| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 extern const wchar_t kImport[]; | 117 extern const wchar_t kImport[]; |
| 118 | 118 |
| 119 extern const wchar_t kSilentDumpOnDCHECK[]; | 119 extern const wchar_t kSilentDumpOnDCHECK[]; |
| 120 | 120 |
| 121 extern const wchar_t kDisablePromptOnRepost[]; | 121 extern const wchar_t kDisablePromptOnRepost[]; |
| 122 | 122 |
| 123 extern const wchar_t kDisablePopupBlocking[]; | 123 extern const wchar_t kDisablePopupBlocking[]; |
| 124 extern const wchar_t kDisableJavaScript[]; | 124 extern const wchar_t kDisableJavaScript[]; |
| 125 extern const wchar_t kDisableJava[]; | 125 extern const wchar_t kDisableJava[]; |
| 126 extern const wchar_t kDisablePlugins[]; | 126 extern const wchar_t kDisablePlugins[]; |
| 127 extern const wchar_t kEnablePlugins[]; |
| 127 extern const wchar_t kDisableImages[]; | 128 extern const wchar_t kDisableImages[]; |
| 128 extern const wchar_t kDisableWebSecurity[]; | 129 extern const wchar_t kDisableWebSecurity[]; |
| 129 extern const wchar_t kEnableRemoteFonts[]; | 130 extern const wchar_t kEnableRemoteFonts[]; |
| 130 | 131 |
| 131 extern const wchar_t kUseLowFragHeapCrt[]; | 132 extern const wchar_t kUseLowFragHeapCrt[]; |
| 132 | 133 |
| 133 #ifndef NDEBUG | 134 #ifndef NDEBUG |
| 134 extern const wchar_t kGearsPluginPathOverride[]; | 135 extern const wchar_t kGearsPluginPathOverride[]; |
| 135 #endif | 136 #endif |
| 136 | 137 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 207 |
| 207 extern const wchar_t kEnableTabPinning[]; | 208 extern const wchar_t kEnableTabPinning[]; |
| 208 | 209 |
| 209 extern const wchar_t kRendererCrashDump[]; | 210 extern const wchar_t kRendererCrashDump[]; |
| 210 | 211 |
| 211 extern const wchar_t kEnableTabtastic2[]; | 212 extern const wchar_t kEnableTabtastic2[]; |
| 212 | 213 |
| 213 } // namespace switches | 214 } // namespace switches |
| 214 | 215 |
| 215 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 216 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |