diff options
author | pilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-22 19:58:31 +0000 |
---|---|---|
committer | pilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-22 20:01:57 +0000 |
commit | cd501a7565dd6054a120fbfe62d45b2299cfcc3b (patch) | |
tree | efe35c31d00f40b2fa9e6dbafd5f9f694f47367e /webkit/browser/fileapi/file_system_quota_client.h | |
parent | 604e202d3548b701900c3771f9517103bb91486c (diff) | |
download | chromium_src-cd501a7565dd6054a120fbfe62d45b2299cfcc3b.zip chromium_src-cd501a7565dd6054a120fbfe62d45b2299cfcc3b.tar.gz chromium_src-cd501a7565dd6054a120fbfe62d45b2299cfcc3b.tar.bz2 |
Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single storage namespace
As discussed here:
https://groups.google.com/a/chromium.org/forum/#!topic/storage-dev/aQall8GOrS4
BUG=338338
TBR=cevans
NOTRY=true
Review URL: https://codereview.chromium.org/492873002
Cr-Commit-Position: refs/heads/master@{#291485}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291485 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/browser/fileapi/file_system_quota_client.h')
-rw-r--r-- | webkit/browser/fileapi/file_system_quota_client.h | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/webkit/browser/fileapi/file_system_quota_client.h b/webkit/browser/fileapi/file_system_quota_client.h index f3cf68d..c520fc2 100644 --- a/webkit/browser/fileapi/file_system_quota_client.h +++ b/webkit/browser/fileapi/file_system_quota_client.h @@ -22,7 +22,7 @@ namespace base { class SequencedTaskRunner; } -namespace fileapi { +namespace storage { class FileSystemContext; @@ -32,7 +32,7 @@ class FileSystemContext; // All of the public methods of this class are called by the quota manager // (except for the constructor/destructor). class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE FileSystemQuotaClient - : public NON_EXPORTED_BASE(quota::QuotaClient) { + : public NON_EXPORTED_BASE(storage::QuotaClient) { public: FileSystemQuotaClient( FileSystemContext* file_system_context, @@ -40,23 +40,20 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE FileSystemQuotaClient virtual ~FileSystemQuotaClient(); // QuotaClient methods. - virtual quota::QuotaClient::ID id() const OVERRIDE; + virtual storage::QuotaClient::ID id() const OVERRIDE; virtual void OnQuotaManagerDestroyed() OVERRIDE; virtual void GetOriginUsage(const GURL& origin_url, - quota::StorageType type, + storage::StorageType type, const GetUsageCallback& callback) OVERRIDE; - virtual void GetOriginsForType( - quota::StorageType type, - const GetOriginsCallback& callback) OVERRIDE; - virtual void GetOriginsForHost( - quota::StorageType type, - const std::string& host, - const GetOriginsCallback& callback) OVERRIDE; - virtual void DeleteOriginData( - const GURL& origin, - quota::StorageType type, - const DeletionCallback& callback) OVERRIDE; - virtual bool DoesSupport(quota::StorageType type) const OVERRIDE; + virtual void GetOriginsForType(storage::StorageType type, + const GetOriginsCallback& callback) OVERRIDE; + virtual void GetOriginsForHost(storage::StorageType type, + const std::string& host, + const GetOriginsCallback& callback) OVERRIDE; + virtual void DeleteOriginData(const GURL& origin, + storage::StorageType type, + const DeletionCallback& callback) OVERRIDE; + virtual bool DoesSupport(storage::StorageType type) const OVERRIDE; private: base::SequencedTaskRunner* file_task_runner() const; @@ -68,6 +65,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE FileSystemQuotaClient DISALLOW_COPY_AND_ASSIGN(FileSystemQuotaClient); }; -} // namespace fileapi +} // namespace storage #endif // WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_H_ |