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

Unified Diff: content/browser/appcache/appcache_service_impl.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_service_impl.h
diff --git a/content/browser/appcache/appcache_service_impl.h b/content/browser/appcache/appcache_service_impl.h
index 3098719d4ff7a0be8ee6a49e17df1eedec1a1451..390c3935cdf23511c306a8051472c647f0173c90 100644
--- a/content/browser/appcache/appcache_service_impl.h
+++ b/content/browser/appcache/appcache_service_impl.h
@@ -30,9 +30,9 @@ namespace net {
class URLRequestContext;
} // namespace net
-namespace quota {
+namespace storage {
class SpecialStoragePolicy;
-} // namespace quota
+} // namespace storage
namespace content {
FORWARD_DECLARE_TEST(AppCacheServiceImplTest, ScheduleReinitialize);
@@ -78,7 +78,7 @@ class CONTENT_EXPORT AppCacheServiceImpl
};
// If not using quota management, the proxy may be NULL.
- explicit AppCacheServiceImpl(quota::QuotaManagerProxy* quota_manager_proxy);
+ explicit AppCacheServiceImpl(storage::QuotaManagerProxy* quota_manager_proxy);
virtual ~AppCacheServiceImpl();
void Initialize(
@@ -150,12 +150,12 @@ class CONTENT_EXPORT AppCacheServiceImpl
handler_factory_ = factory;
}
- quota::SpecialStoragePolicy* special_storage_policy() const {
+ storage::SpecialStoragePolicy* special_storage_policy() const {
return special_storage_policy_.get();
}
- void set_special_storage_policy(quota::SpecialStoragePolicy* policy);
+ void set_special_storage_policy(storage::SpecialStoragePolicy* policy);
- quota::QuotaManagerProxy* quota_manager_proxy() const {
+ storage::QuotaManagerProxy* quota_manager_proxy() const {
return quota_manager_proxy_.get();
}
@@ -203,8 +203,8 @@ class CONTENT_EXPORT AppCacheServiceImpl
AppCacheQuotaClient* quota_client_;
AppCacheExecutableHandlerFactory* handler_factory_;
scoped_ptr<AppCacheStorage> storage_;
- scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy_;
- scoped_refptr<quota::QuotaManagerProxy> quota_manager_proxy_;
+ scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_;
+ scoped_refptr<storage::QuotaManagerProxy> quota_manager_proxy_;
PendingAsyncHelpers pending_helpers_;
BackendMap backends_; // One 'backend' per child process.
// Context for use during cache updates.
« no previous file with comments | « content/browser/appcache/appcache_quota_client_unittest.cc ('k') | content/browser/appcache/appcache_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698