summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-15 08:19:46 +0000
committerkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-15 08:19:46 +0000
commitcc21f9a3095bb1cc5274806666b465731cc60e1f (patch)
treed67d529f906635c7482e570ad4445b357f73464b /webkit/fileapi
parentbb5d2d90e1515ab32188a8e7fc26e7c89f4ac355 (diff)
downloadchromium_src-cc21f9a3095bb1cc5274806666b465731cc60e1f.zip
chromium_src-cc21f9a3095bb1cc5274806666b465731cc60e1f.tar.gz
chromium_src-cc21f9a3095bb1cc5274806666b465731cc60e1f.tar.bz2
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
Diffstat (limited to 'webkit/fileapi')
-rw-r--r--webkit/fileapi/file_system_context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/fileapi/file_system_context.h b/webkit/fileapi/file_system_context.h
index c5844eb..60a07e8 100644
--- a/webkit/fileapi/file_system_context.h
+++ b/webkit/fileapi/file_system_context.h
@@ -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_;