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

Unified Diff: content/browser/quota_dispatcher_host.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
« no previous file with comments | « content/browser/quota/usage_tracker_unittest.cc ('k') | content/browser/quota_dispatcher_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/quota_dispatcher_host.h
diff --git a/content/browser/quota_dispatcher_host.h b/content/browser/quota_dispatcher_host.h
index d241ab59c37b018491a01af51a5b87f7d5007a3e..66cae13b43c58655e42d236ae10c703637330723 100644
--- a/content/browser/quota_dispatcher_host.h
+++ b/content/browser/quota_dispatcher_host.h
@@ -16,7 +16,7 @@ namespace IPC {
class Message;
}
-namespace quota {
+namespace storage {
class QuotaManager;
}
@@ -27,7 +27,7 @@ struct StorageQuotaParams;
class QuotaDispatcherHost : public BrowserMessageFilter {
public:
QuotaDispatcherHost(int process_id,
- quota::QuotaManager* quota_manager,
+ storage::QuotaManager* quota_manager,
QuotaPermissionContext* permission_context);
// BrowserMessageFilter:
@@ -41,16 +41,15 @@ class QuotaDispatcherHost : public BrowserMessageFilter {
class QueryUsageAndQuotaDispatcher;
class RequestQuotaDispatcher;
- void OnQueryStorageUsageAndQuota(
- int request_id,
- const GURL& origin_url,
- quota::StorageType type);
+ void OnQueryStorageUsageAndQuota(int request_id,
+ const GURL& origin_url,
+ storage::StorageType type);
void OnRequestStorageQuota(const StorageQuotaParams& params);
// The ID of this process.
int process_id_;
- quota::QuotaManager* quota_manager_;
+ storage::QuotaManager* quota_manager_;
scoped_refptr<QuotaPermissionContext> permission_context_;
IDMap<RequestDispatcher, IDMapOwnPointer> outstanding_requests_;
« no previous file with comments | « content/browser/quota/usage_tracker_unittest.cc ('k') | content/browser/quota_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698