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 CHROME_COMMON_CHROME_SWITCHES_H__ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H__ |
8 #define CHROME_COMMON_CHROME_SWITCHES_H__ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H__ |
9 | 9 |
10 #include "base/base_switches.h" | 10 #include "base/base_switches.h" |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 extern const wchar_t kDisablePlugins[]; | 116 extern const wchar_t kDisablePlugins[]; |
117 extern const wchar_t kDisableImages[]; | 117 extern const wchar_t kDisableImages[]; |
118 extern const wchar_t kDisableWebSecurity[]; | 118 extern const wchar_t kDisableWebSecurity[]; |
119 | 119 |
120 extern const wchar_t kUseLowFragHeapCrt[]; | 120 extern const wchar_t kUseLowFragHeapCrt[]; |
121 | 121 |
122 #ifndef NDEBUG | 122 #ifndef NDEBUG |
123 extern const wchar_t kGearsPluginPathOverride[]; | 123 extern const wchar_t kGearsPluginPathOverride[]; |
124 #endif | 124 #endif |
125 | 125 |
126 extern const wchar_t kGearsInRenderer[]; | |
127 | |
128 extern const wchar_t kEnableFastback[]; | 126 extern const wchar_t kEnableFastback[]; |
129 | 127 |
130 extern const wchar_t kJavaScriptDebuggerPath[]; | 128 extern const wchar_t kJavaScriptDebuggerPath[]; |
131 | 129 |
132 extern const wchar_t kDisableP13n[]; | 130 extern const wchar_t kDisableP13n[]; |
133 | 131 |
134 extern const wchar_t kSdchFilter[]; | 132 extern const wchar_t kSdchFilter[]; |
135 | 133 |
136 extern const wchar_t kEnableUserScripts[]; | 134 extern const wchar_t kEnableUserScripts[]; |
137 extern const wchar_t kEnableExtensions[]; | 135 extern const wchar_t kEnableExtensions[]; |
(...skipping 13 matching lines...) Expand all Loading... |
151 | 149 |
152 extern const wchar_t kRendererCmdPrefix[]; | 150 extern const wchar_t kRendererCmdPrefix[]; |
153 | 151 |
154 extern const wchar_t kIPCUseFIFO[]; | 152 extern const wchar_t kIPCUseFIFO[]; |
155 | 153 |
156 extern const wchar_t kEnableOutOfProcessDevTools[]; | 154 extern const wchar_t kEnableOutOfProcessDevTools[]; |
157 | 155 |
158 } // namespace switches | 156 } // namespace switches |
159 | 157 |
160 #endif // CHROME_COMMON_CHROME_SWITCHES_H__ | 158 #endif // CHROME_COMMON_CHROME_SWITCHES_H__ |
OLD | NEW |