summaryrefslogtreecommitdiffstats
path: root/webkit/browser/fileapi/sandbox_file_system_backend.h
diff options
context:
space:
mode:
authornhiroki@chromium.org <nhiroki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-15 05:55:37 +0000
committernhiroki@chromium.org <nhiroki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-15 05:55:37 +0000
commit639772fec6025dda6ba1ab666ae559090ee1d6a6 (patch)
tree8a9a292485ff36f6ec257af0ce1595508096b5b0 /webkit/browser/fileapi/sandbox_file_system_backend.h
parent006596501f624caf602ff6c117266fbadbaf5512 (diff)
downloadchromium_src-639772fec6025dda6ba1ab666ae559090ee1d6a6.zip
chromium_src-639772fec6025dda6ba1ab666ae559090ee1d6a6.tar.gz
chromium_src-639772fec6025dda6ba1ab666ae559090ee1d6a6.tar.bz2
FileAPI: Rename SandboxContext to SandboxFileSystemBackendDelegate
BUG=272078 TEST=n/a (renaming only) TBR=jochen Review URL: https://chromiumcodereview.appspot.com/23167002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@217752 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/browser/fileapi/sandbox_file_system_backend.h')
-rw-r--r--webkit/browser/fileapi/sandbox_file_system_backend.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/webkit/browser/fileapi/sandbox_file_system_backend.h b/webkit/browser/fileapi/sandbox_file_system_backend.h
index dec289b..a1a5686 100644
--- a/webkit/browser/fileapi/sandbox_file_system_backend.h
+++ b/webkit/browser/fileapi/sandbox_file_system_backend.h
@@ -14,7 +14,7 @@
#include "base/memory/scoped_ptr.h"
#include "webkit/browser/fileapi/file_system_backend.h"
#include "webkit/browser/fileapi/file_system_quota_util.h"
-#include "webkit/browser/fileapi/sandbox_context.h"
+#include "webkit/browser/fileapi/sandbox_file_system_backend_delegate.h"
#include "webkit/browser/fileapi/task_runner_bound_observer_list.h"
#include "webkit/browser/quota/special_storage_policy.h"
#include "webkit/browser/webkit_storage_browser_export.h"
@@ -30,7 +30,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT SandboxFileSystemBackend
: public FileSystemBackend,
public FileSystemQuotaUtil {
public:
- explicit SandboxFileSystemBackend(SandboxContext* sandbox_context);
+ explicit SandboxFileSystemBackend(SandboxFileSystemBackendDelegate* delegate);
virtual ~SandboxFileSystemBackend();
// FileSystemBackend overrides.
@@ -63,7 +63,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT SandboxFileSystemBackend
// Returns an origin enumerator of this backend.
// This method can only be called on the file thread.
- SandboxContext::OriginEnumerator* CreateOriginEnumerator();
+ SandboxFileSystemBackendDelegate::OriginEnumerator* CreateOriginEnumerator();
// FileSystemQuotaUtil overrides.
virtual base::PlatformFileError DeleteOriginDataOnFileThread(
@@ -106,7 +106,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT SandboxFileSystemBackend
}
private:
- SandboxContext* sandbox_context_; // Not owned.
+ SandboxFileSystemBackendDelegate* delegate_; // Not owned.
bool enable_temporary_file_system_in_incognito_;