| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef ATHENA_TEST_BASE_ATHENA_TEST_LAUNCHER_DELEGATE_H_ | |
| 6 #define ATHENA_TEST_BASE_ATHENA_TEST_LAUNCHER_DELEGATE_H_ | |
| 7 | |
| 8 #include "content/public/test/test_launcher.h" | |
| 9 | |
| 10 namespace athena { | |
| 11 namespace test { | |
| 12 | |
| 13 class AthenaTestLauncherDelegate : public content::TestLauncherDelegate { | |
| 14 public: | |
| 15 int RunTestSuite(int argc, char** argv) override; | |
| 16 bool AdjustChildProcessCommandLine( | |
| 17 base::CommandLine* command_line, | |
| 18 const base::FilePath& temp_data_dir) override; | |
| 19 content::ContentMainDelegate* CreateContentMainDelegate() override; | |
| 20 }; | |
| 21 | |
| 22 } // namespace test | |
| 23 } // namespace athena | |
| 24 | |
| 25 #endif // ATHENA_TEST_BASE_ATHENA_TEST_LAUNCHER_DELEGATE_H_ | |
| OLD | NEW |