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

Unified Diff: chrome/browser/extensions/api/sync_file_system/sync_file_system_apitest.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/extensions/api/sync_file_system/sync_file_system_apitest.cc
diff --git a/chrome/browser/extensions/api/sync_file_system/sync_file_system_apitest.cc b/chrome/browser/extensions/api/sync_file_system/sync_file_system_apitest.cc
index 987729675941a5aa3c8367d0e6f5501b0a0b4b1c..c76d5dccb0a2741394d20ea4d60d34e8f780dd36 100644
--- a/chrome/browser/extensions/api/sync_file_system/sync_file_system_apitest.cc
+++ b/chrome/browser/extensions/api/sync_file_system/sync_file_system_apitest.cc
@@ -26,7 +26,7 @@ using ::testing::Eq;
using ::testing::Ne;
using ::testing::Property;
using ::testing::Return;
-using fileapi::FileSystemURL;
+using storage::FileSystemURL;
using sync_file_system::MockRemoteFileSyncService;
using sync_file_system::RemoteFileSyncService;
using sync_file_system::SyncFileSystemServiceFactory;
@@ -44,19 +44,21 @@ class SyncFileSystemApiTest : public ExtensionApiTest {
ExtensionApiTest::SetUpInProcessBrowserTestFixture();
real_minimum_preserved_space_ =
- quota::QuotaManager::kMinimumPreserveForSystem;
- quota::QuotaManager::kMinimumPreserveForSystem = 0;
+ storage::QuotaManager::kMinimumPreserveForSystem;
+ storage::QuotaManager::kMinimumPreserveForSystem = 0;
// TODO(calvinlo): Update test code after default quota is made const
// (http://crbug.com/155488).
- real_default_quota_ = quota::QuotaManager::kSyncableStorageDefaultHostQuota;
- quota::QuotaManager::kSyncableStorageDefaultHostQuota = 123456;
+ real_default_quota_ =
+ storage::QuotaManager::kSyncableStorageDefaultHostQuota;
+ storage::QuotaManager::kSyncableStorageDefaultHostQuota = 123456;
}
virtual void TearDownInProcessBrowserTestFixture() OVERRIDE {
- quota::QuotaManager::kMinimumPreserveForSystem =
+ storage::QuotaManager::kMinimumPreserveForSystem =
real_minimum_preserved_space_;
- quota::QuotaManager::kSyncableStorageDefaultHostQuota = real_default_quota_;
+ storage::QuotaManager::kSyncableStorageDefaultHostQuota =
+ real_default_quota_;
ExtensionApiTest::TearDownInProcessBrowserTestFixture();
}

Powered by Google App Engine
This is Rietveld 408576698