| Index: chrome/test/base/test_switches.cc
|
| diff --git a/chrome/test/base/test_switches.cc b/chrome/test/base/test_switches.cc
|
| index c5e3c99a70a745401a3bab87e940e147ec9e4601..60239f2d9c40e05d31b291dfe9ed3c496981a9b4 100644
|
| --- a/chrome/test/base/test_switches.cc
|
| +++ b/chrome/test/base/test_switches.cc
|
| @@ -4,22 +4,30 @@
|
|
|
| #include "chrome/test/base/test_switches.h"
|
|
|
| +namespace switches {
|
| +
|
| // Also emit full event trace logs for successful tests.
|
| -const char switches::kAlsoEmitSuccessLogs[] = "also-emit-success-logs";
|
| +const char kAlsoEmitSuccessLogs[] = "also-emit-success-logs";
|
|
|
| // Extra flags that the test should pass to launched browser process.
|
| -const char switches::kExtraChromeFlags[] = "extra-chrome-flags";
|
| +const char kExtraChromeFlags[] = "extra-chrome-flags";
|
|
|
| // Enable Chromium branding of the executable.
|
| -const char switches::kEnableChromiumBranding[] = "enable-chromium-branding";
|
| +const char kEnableChromiumBranding[] = "enable-chromium-branding";
|
|
|
| // Enable displaying error dialogs (for debugging).
|
| -const char switches::kEnableErrorDialogs[] = "enable-errdialogs";
|
| +const char kEnableErrorDialogs[] = "enable-errdialogs";
|
|
|
| // Number of iterations that page cycler tests will run.
|
| -const char switches::kPageCyclerIterations[] = "page-cycler-iterations";
|
| +const char kPageCyclerIterations[] = "page-cycler-iterations";
|
|
|
| // Name of channel used to connect to Chrome
|
| // when using the named testing interface.
|
| -const char switches::kTestingChannel[] = "testing-channel";
|
| +const char kTestingChannel[] = "testing-channel";
|
| +
|
| +#if defined(OS_WIN) && defined(USE_AURA)
|
| +// Force browser tests to run in Ash/Metro on Windows 8.
|
| +const char kAshBrowserTests[] = "ash-browsertests";
|
| +#endif
|
|
|
| +} // namespace switches
|
|
|