Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / api / file_system / file_system_apitest.cc
index 312c9b3..9b60f91 100644 (file)
@@ -31,8 +31,8 @@ class AppLoadObserver : public ExtensionRegistryObserver {
     extension_registry_observer_.Add(ExtensionRegistry::Get(browser_context));
   }
 
-  virtual void OnExtensionLoaded(content::BrowserContext* browser_context,
-                                 const Extension* extension) OVERRIDE {
+  void OnExtensionLoaded(content::BrowserContext* browser_context,
+                         const Extension* extension) override {
     callback_.Run(extension);
   }
 
@@ -64,7 +64,7 @@ const int kGraylistedPath = base::DIR_HOME;
 
 class FileSystemApiTest : public PlatformAppBrowserTest {
  public:
-  virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
+  void SetUpCommandLine(CommandLine* command_line) override {
     PlatformAppBrowserTest::SetUpCommandLine(command_line);
     test_root_folder_ = test_data_dir_.AppendASCII("api_test")
         .AppendASCII("file_system");
@@ -72,11 +72,9 @@ class FileSystemApiTest : public PlatformAppBrowserTest {
         "test_root", test_root_folder_);
   }
 
-  virtual void SetUpOnMainThread() OVERRIDE {
-    ClearCommandLineArgs();
-  }
+  void SetUpOnMainThread() override { ClearCommandLineArgs(); }
 
-  virtual void TearDown() OVERRIDE {
+  void TearDown() override {
     FileSystemChooseEntryFunction::StopSkippingPickerForTest();
     PlatformAppBrowserTest::TearDown();
   };