Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / xwalk / test / base / xwalk_test_launcher.cc
index 458b813..88c4c42 100644 (file)
@@ -3,8 +3,8 @@
 // found in the LICENSE file.
 
 #include "base/command_line.h"
-#include "base/file_util.h"
 #include "base/files/file_path.h"
+#include "base/files/file_util.h"
 #include "base/logging.h"
 #include "base/memory/linked_ptr.h"
 #include "base/process/launch.h"
@@ -24,12 +24,12 @@ class XWalkTestLauncherDelegate : public content::TestLauncherDelegate {
   XWalkTestLauncherDelegate() {}
   virtual ~XWalkTestLauncherDelegate() {}
 
-  virtual int RunTestSuite(int argc, char** argv) OVERRIDE {
+  int RunTestSuite(int argc, char** argv) override {
     return XWalkTestSuite(argc, argv).Run();
   }
 
-  virtual bool AdjustChildProcessCommandLine(
-      CommandLine* command_line, const base::FilePath& temp_data_dir) OVERRIDE {
+  bool AdjustChildProcessCommandLine(
+      CommandLine* command_line, const base::FilePath& temp_data_dir) override {
     CommandLine new_command_line(command_line->GetProgram());
     CommandLine::SwitchMap switches = command_line->GetSwitches();
 
@@ -48,7 +48,7 @@ class XWalkTestLauncherDelegate : public content::TestLauncherDelegate {
   }
 
  protected:
-  virtual content::ContentMainDelegate* CreateContentMainDelegate() OVERRIDE {
+  content::ContentMainDelegate* CreateContentMainDelegate() override {
 #if defined(OS_WIN) || defined (OS_LINUX)
     return new xwalk::XWalkMainDelegate();
 #else