Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1128)

Unified Diff: content/browser/appcache/appcache_quota_client.h

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/appcache/appcache_quota_client.h
diff --git a/content/browser/appcache/appcache_quota_client.h b/content/browser/appcache/appcache_quota_client.h
index 42d2a8d513de60078e35ac4fc304c60b1d3c2614..8b16c166a3f5c7c13f255ab1aec560e90e37089b 100644
--- a/content/browser/appcache/appcache_quota_client.h
+++ b/content/browser/appcache/appcache_quota_client.h
@@ -29,7 +29,7 @@ class AppCacheStorageImpl;
// used on the IO thread by the quota manager. This class deletes
// itself when both the quota manager and the appcache service have
// been destroyed.
-class AppCacheQuotaClient : public quota::QuotaClient {
+class AppCacheQuotaClient : public storage::QuotaClient {
public:
typedef std::deque<base::Closure> RequestQueue;
@@ -39,17 +39,17 @@ class AppCacheQuotaClient : public quota::QuotaClient {
virtual ID id() const OVERRIDE;
virtual void OnQuotaManagerDestroyed() OVERRIDE;
virtual void GetOriginUsage(const GURL& origin,
- quota::StorageType type,
+ storage::StorageType type,
const GetUsageCallback& callback) OVERRIDE;
- virtual void GetOriginsForType(quota::StorageType type,
+ virtual void GetOriginsForType(storage::StorageType type,
const GetOriginsCallback& callback) OVERRIDE;
- virtual void GetOriginsForHost(quota::StorageType type,
+ virtual void GetOriginsForHost(storage::StorageType type,
const std::string& host,
const GetOriginsCallback& callback) OVERRIDE;
virtual void DeleteOriginData(const GURL& origin,
- quota::StorageType type,
+ storage::StorageType type,
const DeletionCallback& callback) OVERRIDE;
- virtual bool DoesSupport(quota::StorageType type) const OVERRIDE;
+ virtual bool DoesSupport(storage::StorageType type) const OVERRIDE;
private:
friend class content::AppCacheQuotaClientTest;
@@ -60,7 +60,7 @@ class AppCacheQuotaClient : public quota::QuotaClient {
explicit AppCacheQuotaClient(AppCacheServiceImpl* service);
void DidDeleteAppCachesForOrigin(int rv);
- void GetOriginsHelper(quota::StorageType type,
+ void GetOriginsHelper(storage::StorageType type,
const std::string& opt_host,
const GetOriginsCallback& callback);
void ProcessPendingRequests();
« no previous file with comments | « content/browser/appcache/appcache_host_unittest.cc ('k') | content/browser/appcache/appcache_quota_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698