| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_TEST_TEST_SWITCHES_H_ | 5 #ifndef BASE_TEST_TEST_SWITCHES_H_ |
| 6 #define BASE_TEST_TEST_SWITCHES_H_ | 6 #define BASE_TEST_TEST_SWITCHES_H_ |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // All switches in alphabetical order. The switches should be documented | 10 // All switches in alphabetical order. The switches should be documented |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 extern const char kTestLauncherSummaryOutput[]; | 21 extern const char kTestLauncherSummaryOutput[]; |
| 22 extern const char kTestLauncherPrintTestStdio[]; | 22 extern const char kTestLauncherPrintTestStdio[]; |
| 23 extern const char kTestLauncherPrintWritablePath[]; | 23 extern const char kTestLauncherPrintWritablePath[]; |
| 24 extern const char kTestLauncherShardIndex[]; | 24 extern const char kTestLauncherShardIndex[]; |
| 25 extern const char kTestLauncherTotalShards[]; | 25 extern const char kTestLauncherTotalShards[]; |
| 26 extern const char kTestLauncherTimeout[]; | 26 extern const char kTestLauncherTimeout[]; |
| 27 extern const char kTestTinyTimeout[]; | 27 extern const char kTestTinyTimeout[]; |
| 28 extern const char kUiTestActionTimeout[]; | 28 extern const char kUiTestActionTimeout[]; |
| 29 extern const char kUiTestActionMaxTimeout[]; | 29 extern const char kUiTestActionMaxTimeout[]; |
| 30 | 30 |
| 31 #if defined(ENABLE_PLUGINS) |
| 32 extern const char kRebaselinePixelTests[]; |
| 33 #endif |
| 34 |
| 31 } // namespace switches | 35 } // namespace switches |
| 32 | 36 |
| 33 #endif // BASE_TEST_TEST_SWITCHES_H_ | 37 #endif // BASE_TEST_TEST_SWITCHES_H_ |
| OLD | NEW |