| Index: chrome/browser/extensions/api/file_system/file_system_apitest_chromeos.cc
|
| diff --git a/chrome/browser/extensions/api/file_system/file_system_apitest_chromeos.cc b/chrome/browser/extensions/api/file_system/file_system_apitest_chromeos.cc
|
| index 45c9d8d6aaa31190c63187a393910c4476dae92f..7e7b970a5fa5ea9abc5bebae7bf5c03386fd0289 100644
|
| --- a/chrome/browser/extensions/api/file_system/file_system_apitest_chromeos.cc
|
| +++ b/chrome/browser/extensions/api/file_system/file_system_apitest_chromeos.cc
|
| @@ -28,7 +28,7 @@ class FileSystemApiTestForDrive : public PlatformAppBrowserTest {
|
|
|
| // Sets up fake Drive service for tests (this has to be injected before the
|
| // real DriveIntegrationService instance is created.)
|
| - virtual void SetUpInProcessBrowserTestFixture() OVERRIDE {
|
| + virtual void SetUpInProcessBrowserTestFixture() override {
|
| PlatformAppBrowserTest::SetUpInProcessBrowserTestFixture();
|
| extensions::ComponentLoader::EnableBackgroundExtensionsForTesting();
|
|
|
| @@ -44,7 +44,7 @@ class FileSystemApiTestForDrive : public PlatformAppBrowserTest {
|
|
|
| // Ensure the fake service's data is fetch in the local file system. This is
|
| // necessary because the fetch starts lazily upon the first read operation.
|
| - virtual void SetUpOnMainThread() OVERRIDE {
|
| + virtual void SetUpOnMainThread() override {
|
| PlatformAppBrowserTest::SetUpOnMainThread();
|
|
|
| scoped_ptr<drive::ResourceEntry> entry;
|
| @@ -56,7 +56,7 @@ class FileSystemApiTestForDrive : public PlatformAppBrowserTest {
|
| ASSERT_EQ(drive::FILE_ERROR_OK, error);
|
| }
|
|
|
| - virtual void TearDown() OVERRIDE {
|
| + virtual void TearDown() override {
|
| FileSystemChooseEntryFunction::StopSkippingPickerForTest();
|
| PlatformAppBrowserTest::TearDown();
|
| };
|
|
|