0

FileSystemContext::partition_path should not be held as a const ref

BUG=none
TEST=green bots

Review URL: https://codereview.chromium.org/11151016

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161833 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
kinuko@chromium.org
2012-10-15 08:19:46 +00:00
parent bb5d2d90e1
commit cc21f9a309

@ -193,7 +193,7 @@ class FILEAPI_EXPORT FileSystemContext
std::map<FileSystemType, FileSystemMountPointProvider*> provider_map_;
// The base path of the storage partition for this context.
const FilePath& partition_path_;
const FilePath partition_path_;
// For syncable file systems.
scoped_ptr<LocalFileChangeTracker> change_tracker_;