| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // Defines all the command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
| 6 | 6 |
| 7 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_SWITCHES_H__ | 7 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_SWITCHES_H__ |
| 8 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_SWITCHES_H__ | 8 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_SWITCHES_H__ |
| 9 | 9 |
| 10 namespace test_shell { | 10 namespace test_shell { |
| 11 | 11 |
| 12 extern const wchar_t kCrashDumps[]; | 12 extern const char kCrashDumps[]; |
| 13 extern const wchar_t kDumpPixels[]; | 13 extern const char kDumpPixels[]; |
| 14 extern const wchar_t kLayoutTests[]; | 14 extern const char kLayoutTests[]; |
| 15 extern const wchar_t kGenericTheme[]; | 15 extern const char kGenericTheme[]; |
| 16 extern const wchar_t kClassicTheme[]; | 16 extern const char kClassicTheme[]; |
| 17 extern const wchar_t kUxTheme[]; | 17 extern const char kUxTheme[]; |
| 18 extern const wchar_t kNoErrorDialogs[]; | 18 extern const char kNoErrorDialogs[]; |
| 19 extern const wchar_t kNoTree[]; | 19 extern const char kNoTree[]; |
| 20 extern const wchar_t kTestShellTimeOut[]; | 20 extern const char kTestShellTimeOut[]; |
| 21 extern const wchar_t kStartupDialog[]; | 21 extern const char kStartupDialog[]; |
| 22 extern const wchar_t kGPFaultErrorBox[]; | 22 extern const char kGPFaultErrorBox[]; |
| 23 extern const wchar_t kJavaScriptFlags[]; | 23 extern const char kJavaScriptFlags[]; |
| 24 extern const wchar_t kRecordMode[]; | 24 extern const char kRecordMode[]; |
| 25 extern const wchar_t kPlaybackMode[]; | 25 extern const char kPlaybackMode[]; |
| 26 extern const wchar_t kNoEvents[]; | 26 extern const char kNoEvents[]; |
| 27 extern const wchar_t kDumpStatsTable[]; | 27 extern const char kDumpStatsTable[]; |
| 28 extern const wchar_t kCacheDir[]; | 28 extern const char kCacheDir[]; |
| 29 extern const wchar_t kDebugMemoryInUse[]; | 29 extern const char kDebugMemoryInUse[]; |
| 30 extern const wchar_t kEnableFileCookies[]; | 30 extern const char kEnableFileCookies[]; |
| 31 extern const wchar_t kEnableTracing[]; | 31 extern const char kEnableTracing[]; |
| 32 extern const wchar_t kAllowScriptsToCloseWindows[]; | 32 extern const char kAllowScriptsToCloseWindows[]; |
| 33 extern const wchar_t kCheckLayoutTestSystemDeps[]; | 33 extern const char kCheckLayoutTestSystemDeps[]; |
| 34 extern const wchar_t kGDB[]; | 34 extern const char kGDB[]; |
| 35 extern const wchar_t kProfiler[]; | 35 extern const char kProfiler[]; |
| 36 | 36 |
| 37 } // namespace test_shell | 37 } // namespace test_shell |
| 38 | 38 |
| 39 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_SWITCHES_H__ | 39 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_SWITCHES_H__ |
| OLD | NEW |