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 #include "webkit/tools/test_shell/test_shell_switches.h" | 5 #include "webkit/tools/test_shell/test_shell_switches.h" |
6 | 6 |
7 namespace test_shell { | 7 namespace test_shell { |
8 | 8 |
9 // Suppresses all error dialogs when present. | 9 // Suppresses all error dialogs when present. |
10 const wchar_t kNoErrorDialogs[] = L"noerrdialogs"; | 10 const wchar_t kNoErrorDialogs[] = L"noerrdialogs"; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 extern const wchar_t kCheckLayoutTestSystemDeps[] = | 64 extern const wchar_t kCheckLayoutTestSystemDeps[] = |
65 L"check-layout-test-sys-deps"; | 65 L"check-layout-test-sys-deps"; |
66 | 66 |
67 // Enable the media player by having this switch. | 67 // Enable the media player by having this switch. |
68 extern const wchar_t kEnableVideo[] = L"enable-video"; | 68 extern const wchar_t kEnableVideo[] = L"enable-video"; |
69 | 69 |
70 // If set, we are running under GDB so allow a certain class of errors | 70 // If set, we are running under GDB so allow a certain class of errors |
71 // to happen even if in layout test mode. | 71 // to happen even if in layout test mode. |
72 extern const wchar_t kGDB[] = L"gdb"; | 72 extern const wchar_t kGDB[] = L"gdb"; |
73 | 73 |
| 74 // Make functions of the Profiler class available in javascript |
| 75 extern const wchar_t kProfiler[] = L"profiler"; |
| 76 |
74 } // namespace test_shell | 77 } // namespace test_shell |
75 | 78 |
OLD | NEW |