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 { |
(...skipping 12 matching lines...) Expand all Loading... |
23 extern const wchar_t kNoEvents[]; | 23 extern const wchar_t kNoEvents[]; |
24 extern const wchar_t kDumpStatsTable[]; | 24 extern const wchar_t kDumpStatsTable[]; |
25 extern const wchar_t kCacheDir[]; | 25 extern const wchar_t kCacheDir[]; |
26 extern const wchar_t kDebugMemoryInUse[]; | 26 extern const wchar_t kDebugMemoryInUse[]; |
27 extern const wchar_t kEnableFileCookies[]; | 27 extern const wchar_t kEnableFileCookies[]; |
28 extern const wchar_t kEnableTracing[]; | 28 extern const wchar_t kEnableTracing[]; |
29 extern const wchar_t kAllowScriptsToCloseWindows[]; | 29 extern const wchar_t kAllowScriptsToCloseWindows[]; |
30 extern const wchar_t kCheckLayoutTestSystemDeps[]; | 30 extern const wchar_t kCheckLayoutTestSystemDeps[]; |
31 extern const wchar_t kEnableVideo[]; | 31 extern const wchar_t kEnableVideo[]; |
32 extern const wchar_t kGDB[]; | 32 extern const wchar_t kGDB[]; |
| 33 extern const wchar_t kProfiler[]; |
33 | 34 |
34 } // namespace test_shell | 35 } // namespace test_shell |
35 | 36 |
36 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_SWITCHES_H__ | 37 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_SWITCHES_H__ |
37 | 38 |
OLD | NEW |