diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-04 05:54:46 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-04 05:54:46 +0000 |
commit | 3a458684b53920e859297c7c3c8d834a6a760e97 (patch) | |
tree | 190c5e1ef3de877586cea7b6f3846685ee37193f /webkit/browser/fileapi/isolated_mount_point_provider.h | |
parent | a070edee04b24dfaa6176ddf0449cd324667d6ce (diff) | |
download | chromium_src-3a458684b53920e859297c7c3c8d834a6a760e97.zip chromium_src-3a458684b53920e859297c7c3c8d834a6a760e97.tar.gz chromium_src-3a458684b53920e859297c7c3c8d834a6a760e97.tar.bz2 |
Deprecate FileSystemMountPointProvider::DeleteFileSystem
FileSystem deletion (reset) should only work for sandboxed
filesystems, and the method must not be on the generic
FileSystemMountPointProvider interface.
BUG=241701
TEST=manual (devtools -> delete root -> see the filesystem goes away), layout tests
NOTRY=true
R=satorux@chromium.org, tzik@chromium.org, vandebo@chromium.org
Review URL: https://codereview.chromium.org/18586006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@210126 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/browser/fileapi/isolated_mount_point_provider.h')
-rw-r--r-- | webkit/browser/fileapi/isolated_mount_point_provider.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/webkit/browser/fileapi/isolated_mount_point_provider.h b/webkit/browser/fileapi/isolated_mount_point_provider.h index cadc66f..449ecf5 100644 --- a/webkit/browser/fileapi/isolated_mount_point_provider.h +++ b/webkit/browser/fileapi/isolated_mount_point_provider.h @@ -43,11 +43,6 @@ class IsolatedMountPointProvider : public FileSystemMountPointProvider { int64 offset, FileSystemContext* context) const OVERRIDE; virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE; - virtual void DeleteFileSystem( - const GURL& origin_url, - FileSystemType type, - FileSystemContext* context, - const DeleteFileSystemCallback& callback) OVERRIDE; private: scoped_ptr<AsyncFileUtilAdapter> isolated_file_util_; |