| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 extern const char kEnableP2PApi[]; | 153 extern const char kEnableP2PApi[]; |
| 154 extern const char kEnablePanels[]; | 154 extern const char kEnablePanels[]; |
| 155 extern const char kEnablePreconnect[]; | 155 extern const char kEnablePreconnect[]; |
| 156 extern const char kEnablePrintPreview[]; | 156 extern const char kEnablePrintPreview[]; |
| 157 extern const char kEnableRemoting[]; | 157 extern const char kEnableRemoting[]; |
| 158 extern const char kEnableResourceContentSettings[]; | 158 extern const char kEnableResourceContentSettings[]; |
| 159 extern const char kEnableSearchProviderApiV2[]; | 159 extern const char kEnableSearchProviderApiV2[]; |
| 160 extern const char kEnableSnapStart[]; | 160 extern const char kEnableSnapStart[]; |
| 161 extern const char kEnableSync[]; | 161 extern const char kEnableSync[]; |
| 162 extern const char kEnableSyncAutofill[]; | 162 extern const char kEnableSyncAutofill[]; |
| 163 extern const char kEnableSyncOAuth[]; |
| 163 extern const char kEnableSyncPreferences[]; | 164 extern const char kEnableSyncPreferences[]; |
| 164 extern const char kEnableSyncSessions[]; | 165 extern const char kEnableSyncSessions[]; |
| 165 extern const char kEnableSyncTypedUrls[]; | 166 extern const char kEnableSyncTypedUrls[]; |
| 166 extern const char kEnableTabGroupsContextMenu[]; | 167 extern const char kEnableTabGroupsContextMenu[]; |
| 167 extern const char kEnableTcpFastOpen[]; | 168 extern const char kEnableTcpFastOpen[]; |
| 168 extern const char kEnableTopSites[]; | 169 extern const char kEnableTopSites[]; |
| 169 extern const char kEnableVerticalTabs[]; | 170 extern const char kEnableVerticalTabs[]; |
| 170 extern const char kEnableVideoFullscreen[]; | 171 extern const char kEnableVideoFullscreen[]; |
| 171 extern const char kEnableVideoLogging[]; | 172 extern const char kEnableVideoLogging[]; |
| 172 extern const char kEnableWatchdog[]; | 173 extern const char kEnableWatchdog[]; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 | 348 |
| 348 #if defined(TOOLKIT_VIEWS) | 349 #if defined(TOOLKIT_VIEWS) |
| 349 extern const char kDebugViewsPaint[]; | 350 extern const char kDebugViewsPaint[]; |
| 350 #endif | 351 #endif |
| 351 | 352 |
| 352 #if defined(TOUCH_UI) | 353 #if defined(TOUCH_UI) |
| 353 extern const char kKeepMouseCursor[]; | 354 extern const char kKeepMouseCursor[]; |
| 354 #endif | 355 #endif |
| 355 | 356 |
| 356 #ifndef NDEBUG | 357 #ifndef NDEBUG |
| 358 extern const char kClearAuthenticationService[]; |
| 357 extern const char kClearTokenService[]; | 359 extern const char kClearTokenService[]; |
| 358 extern const char kSetToken[]; | 360 extern const char kSetToken[]; |
| 359 extern const char kWebSocketLiveExperimentHost[]; | 361 extern const char kWebSocketLiveExperimentHost[]; |
| 360 #endif | 362 #endif |
| 361 | 363 |
| 362 #if !defined(OFFICIAL_BUILD) | 364 #if !defined(OFFICIAL_BUILD) |
| 363 extern const char kRendererCheckFalseTest[]; | 365 extern const char kRendererCheckFalseTest[]; |
| 364 #endif | 366 #endif |
| 365 | 367 |
| 366 #if defined(HAVE_XINPUT2) | 368 #if defined(HAVE_XINPUT2) |
| 367 extern const char kTouchDevices[]; | 369 extern const char kTouchDevices[]; |
| 368 #endif | 370 #endif |
| 369 | 371 |
| 370 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 372 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 371 // alphabetical order, or in one of the ifdefs (also in order in each section). | 373 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 372 | 374 |
| 373 } // namespace switches | 375 } // namespace switches |
| 374 | 376 |
| 375 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 377 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |