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

Unified Diff: chrome/browser/browsing_data/browsing_data_remover_unittest.cc

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: chrome/browser/browsing_data/browsing_data_remover_unittest.cc
diff --git a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
index 15c5b01d26d0fc86754444e2fcc1e1b4b48f3d6f..a5ec397fd09a3b03e317b102ff791e09d4a4b4f3 100644
--- a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
+++ b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
@@ -144,16 +144,14 @@ class TestStoragePartition : public StoragePartition {
virtual net::URLRequestContextGetter* GetMediaURLRequestContext() OVERRIDE {
return NULL;
}
- virtual quota::QuotaManager* GetQuotaManager() OVERRIDE {
- return NULL;
- }
+ virtual storage::QuotaManager* GetQuotaManager() OVERRIDE { return NULL; }
virtual content::AppCacheService* GetAppCacheService() OVERRIDE {
return NULL;
}
- virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE {
+ virtual storage::FileSystemContext* GetFileSystemContext() OVERRIDE {
return NULL;
}
- virtual webkit_database::DatabaseTracker* GetDatabaseTracker() OVERRIDE {
+ virtual storage::DatabaseTracker* GetDatabaseTracker() OVERRIDE {
return NULL;
}
virtual content::DOMStorageContext* GetDOMStorageContext() OVERRIDE {
@@ -827,7 +825,7 @@ class BrowsingDataRemoverTest : public testing::Test,
#endif
}
- quota::SpecialStoragePolicy* mock_policy() {
+ storage::SpecialStoragePolicy* mock_policy() {
#if defined(ENABLE_EXTENSIONS)
return mock_policy_;
#else

Powered by Google App Engine
This is Rietveld 408576698