Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 282 extern const char kSbDisableAutoUpdate[]; | 282 extern const char kSbDisableAutoUpdate[]; |
| 283 extern const char kSbDisableDownloadProtection[]; | 283 extern const char kSbDisableDownloadProtection[]; |
| 284 extern const char kSearchInOmniboxHint[]; | 284 extern const char kSearchInOmniboxHint[]; |
| 285 extern const char kServiceAccountLsid[]; | 285 extern const char kServiceAccountLsid[]; |
| 286 extern const char kSetToken[]; | 286 extern const char kSetToken[]; |
| 287 extern const char kShowAutofillTypePredictions[]; | 287 extern const char kShowAutofillTypePredictions[]; |
| 288 extern const char kShowComponentExtensionOptions[]; | 288 extern const char kShowComponentExtensionOptions[]; |
| 289 extern const char kShowCompositedLayerBorders[]; | 289 extern const char kShowCompositedLayerBorders[]; |
| 290 extern const char kShowCompositedLayerTree[]; | 290 extern const char kShowCompositedLayerTree[]; |
| 291 extern const char kShowFPSCounter[]; | 291 extern const char kShowFPSCounter[]; |
| 292 extern const char kShowVolumeStatus[]; | |
|
xiyuan
2012/01/25 04:43:12
Should this go with other chromeos only switches?
achuithb
2012/01/25 10:46:06
Done.
| |
| 292 extern const char kShowIcons[]; | 293 extern const char kShowIcons[]; |
| 293 extern const char kSilentDumpOnDCHECK[]; | 294 extern const char kSilentDumpOnDCHECK[]; |
| 294 extern const char kSocketReusePolicy[]; | 295 extern const char kSocketReusePolicy[]; |
| 295 extern const char kStartMaximized[]; | 296 extern const char kStartMaximized[]; |
| 296 extern const char kSyncAllowInsecureXmppConnection[]; | 297 extern const char kSyncAllowInsecureXmppConnection[]; |
| 297 extern const char kSyncInvalidateXmppLogin[]; | 298 extern const char kSyncInvalidateXmppLogin[]; |
| 298 extern const char kSyncerThreadTimedStop[]; | 299 extern const char kSyncerThreadTimedStop[]; |
| 299 extern const char kSyncNotificationMethod[]; | 300 extern const char kSyncNotificationMethod[]; |
| 300 extern const char kSyncNotificationHost[]; | 301 extern const char kSyncNotificationHost[]; |
| 301 extern const char kSyncServiceURL[]; | 302 extern const char kSyncServiceURL[]; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 396 #if defined(USE_AURA) | 397 #if defined(USE_AURA) |
| 397 extern const char kTestCompositor[]; | 398 extern const char kTestCompositor[]; |
| 398 #endif | 399 #endif |
| 399 | 400 |
| 400 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 401 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 401 // alphabetical order, or in one of the ifdefs (also in order in each section). | 402 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 402 | 403 |
| 403 } // namespace switches | 404 } // namespace switches |
| 404 | 405 |
| 405 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 406 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |