| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 extern const wchar_t kJavaScriptDebuggerPath[]; | 136 extern const wchar_t kJavaScriptDebuggerPath[]; |
| 137 | 137 |
| 138 extern const wchar_t kDisableP13n[]; | 138 extern const wchar_t kDisableP13n[]; |
| 139 | 139 |
| 140 extern const wchar_t kSdchFilter[]; | 140 extern const wchar_t kSdchFilter[]; |
| 141 | 141 |
| 142 extern const wchar_t kEnableUserScripts[]; | 142 extern const wchar_t kEnableUserScripts[]; |
| 143 extern const wchar_t kEnableExtensions[]; | 143 extern const wchar_t kEnableExtensions[]; |
| 144 extern const wchar_t kInstallExtension[]; | 144 extern const wchar_t kInstallExtension[]; |
| 145 extern const wchar_t kLoadExtension[]; | 145 extern const wchar_t kLoadExtension[]; |
| 146 extern const wchar_t kPackExtension[]; |
| 147 extern const wchar_t kPackExtensionKey[]; |
| 146 extern const wchar_t kLoadPlugin[]; | 148 extern const wchar_t kLoadPlugin[]; |
| 147 extern const wchar_t kUserScriptsDir[]; | 149 extern const wchar_t kUserScriptsDir[]; |
| 148 | 150 |
| 149 extern const wchar_t kIncognito[]; | 151 extern const wchar_t kIncognito[]; |
| 150 | 152 |
| 151 extern const wchar_t kEnableRendererAccessibility[]; | 153 extern const wchar_t kEnableRendererAccessibility[]; |
| 152 | 154 |
| 153 extern const wchar_t kTestName[]; | 155 extern const wchar_t kTestName[]; |
| 154 | 156 |
| 155 extern const wchar_t kRendererCmdPrefix[]; | 157 extern const wchar_t kRendererCmdPrefix[]; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 179 | 181 |
| 180 extern const wchar_t kNewNewTabPage[]; | 182 extern const wchar_t kNewNewTabPage[]; |
| 181 | 183 |
| 182 extern const wchar_t kEnableBenchmarking[]; | 184 extern const wchar_t kEnableBenchmarking[]; |
| 183 | 185 |
| 184 extern const wchar_t kNoDefaultBrowserCheck[]; | 186 extern const wchar_t kNoDefaultBrowserCheck[]; |
| 185 | 187 |
| 186 } // namespace switches | 188 } // namespace switches |
| 187 | 189 |
| 188 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 190 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |