| 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 "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 extern const wchar_t kInternalNaCl[]; | 137 extern const wchar_t kInternalNaCl[]; |
| 138 | 138 |
| 139 #ifndef NDEBUG | 139 #ifndef NDEBUG |
| 140 extern const wchar_t kGearsPluginPathOverride[]; | 140 extern const wchar_t kGearsPluginPathOverride[]; |
| 141 #endif | 141 #endif |
| 142 | 142 |
| 143 extern const wchar_t kEnableFastback[]; | 143 extern const wchar_t kEnableFastback[]; |
| 144 | 144 |
| 145 extern const wchar_t kDisableSync[]; | 145 extern const wchar_t kDisableSync[]; |
| 146 extern const wchar_t kSyncerThreadTimedStop[]; | 146 extern const wchar_t kSyncerThreadTimedStop[]; |
| 147 extern const wchar_t kSyncerThreadPthreads[]; | |
| 148 | 147 |
| 149 extern const wchar_t kSdchFilter[]; | 148 extern const wchar_t kSdchFilter[]; |
| 150 | 149 |
| 151 extern const wchar_t kEnableUserScripts[]; | 150 extern const wchar_t kEnableUserScripts[]; |
| 152 extern const wchar_t kDisableExtensions[]; | 151 extern const wchar_t kDisableExtensions[]; |
| 153 extern const wchar_t kExtensionsUpdateFrequency[]; | 152 extern const wchar_t kExtensionsUpdateFrequency[]; |
| 154 extern const wchar_t kLoadExtension[]; | 153 extern const wchar_t kLoadExtension[]; |
| 155 extern const wchar_t kPackExtension[]; | 154 extern const wchar_t kPackExtension[]; |
| 156 extern const wchar_t kPackExtensionKey[]; | 155 extern const wchar_t kPackExtensionKey[]; |
| 157 extern const wchar_t kShowExtensionsOnTop[]; | 156 extern const wchar_t kShowExtensionsOnTop[]; |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 extern const wchar_t kActivateOnLaunch[]; | 248 extern const wchar_t kActivateOnLaunch[]; |
| 250 extern const wchar_t kEnableWebSockets[]; | 249 extern const wchar_t kEnableWebSockets[]; |
| 251 | 250 |
| 252 extern const wchar_t kEnableExperimentalWebGL[]; | 251 extern const wchar_t kEnableExperimentalWebGL[]; |
| 253 | 252 |
| 254 extern const wchar_t kEnableDesktopNotifications[]; | 253 extern const wchar_t kEnableDesktopNotifications[]; |
| 255 | 254 |
| 256 } // namespace switches | 255 } // namespace switches |
| 257 | 256 |
| 258 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 257 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |