X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fchrome%2Fbrowser%2Fextensions%2Fapi%2Ffile_system%2Ffile_system_apitest_chromeos.cc;h=7e7b970a5fa5ea9abc5bebae7bf5c03386fd0289;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=45c9d8d6aaa31190c63187a393910c4476dae92f;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/chrome/browser/extensions/api/file_system/file_system_apitest_chromeos.cc b/src/chrome/browser/extensions/api/file_system/file_system_apitest_chromeos.cc index 45c9d8d..7e7b970 100644 --- a/src/chrome/browser/extensions/api/file_system/file_system_apitest_chromeos.cc +++ b/src/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 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(); };