diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-03 03:21:37 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-03 03:21:37 +0000 |
commit | 09a31602ef7b10148b28b894bdbf7cc359443084 (patch) | |
tree | 9eb740e700a27db1a2ea947cb94e1f989e10ebd0 /webkit/fileapi/file_system_path_manager.h | |
parent | 815cce6882ce16b8fd022acfe8d764599dd060fa (diff) | |
download | chromium_src-09a31602ef7b10148b28b894bdbf7cc359443084.zip chromium_src-09a31602ef7b10148b28b894bdbf7cc359443084.tar.gz chromium_src-09a31602ef7b10148b28b894bdbf7cc359443084.tar.bz2 |
Delete FileSystem API data when uninstalling extensions.
BUG=63700
TEST=load an extension that keeps writing to file system and unload it. See if the origin data under the profile is deleted.
Review URL: http://codereview.chromium.org/5272010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_path_manager.h')
-rw-r--r-- | webkit/fileapi/file_system_path_manager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/fileapi/file_system_path_manager.h b/webkit/fileapi/file_system_path_manager.h index 12104ef..16c7182 100644 --- a/webkit/fileapi/file_system_path_manager.h +++ b/webkit/fileapi/file_system_path_manager.h @@ -74,12 +74,12 @@ class FileSystemPathManager { return base_path_; } - private: - class GetFileSystemRootPathTask; - // Returns the storage identifier string for the given |url|. static std::string GetStorageIdentifierFromURL(const GURL& url); + private: + class GetFileSystemRootPathTask; + scoped_refptr<base::MessageLoopProxy> file_message_loop_; const FilePath base_path_; |