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 37b5a84969c71e1ec7d59c60a882612f6e5139c9..bb9482152f4c6a25da6a87fa01d57aaf9da9980a 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 |
@@ -40,7 +40,7 @@ class SyncFileSystemApiTest : public ExtensionApiTest { |
real_minimum_preserved_space_(0), |
real_default_quota_(0) {} |
- virtual void SetUpInProcessBrowserTestFixture() override { |
+ void SetUpInProcessBrowserTestFixture() override { |
ExtensionApiTest::SetUpInProcessBrowserTestFixture(); |
real_minimum_preserved_space_ = |
@@ -54,7 +54,7 @@ class SyncFileSystemApiTest : public ExtensionApiTest { |
storage::QuotaManager::kSyncableStorageDefaultHostQuota = 123456; |
} |
- virtual void TearDownInProcessBrowserTestFixture() override { |
+ void TearDownInProcessBrowserTestFixture() override { |
storage::QuotaManager::kMinimumPreserveForSystem = |
real_minimum_preserved_space_; |
storage::QuotaManager::kSyncableStorageDefaultHostQuota = |
@@ -62,7 +62,7 @@ class SyncFileSystemApiTest : public ExtensionApiTest { |
ExtensionApiTest::TearDownInProcessBrowserTestFixture(); |
} |
- virtual void SetUpOnMainThread() override { |
+ void SetUpOnMainThread() override { |
// Must happen after the browser process is created because instantiating |
// the factory will instantiate ExtensionSystemFactory which depends on |
// ExtensionsBrowserClient setup in BrowserProcessImpl. |