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(); |
} |