| 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 extern const char kSbInfoURLPrefix[]; | 308 extern const char kSbInfoURLPrefix[]; |
| 309 extern const char kSbMacKeyURLPrefix[]; | 309 extern const char kSbMacKeyURLPrefix[]; |
| 310 extern const char kSbDisableAutoUpdate[]; | 310 extern const char kSbDisableAutoUpdate[]; |
| 311 extern const char kSbEnableDownloadProtection[]; | 311 extern const char kSbEnableDownloadProtection[]; |
| 312 extern const char kSbEnableDownloadWarningUI[]; | 312 extern const char kSbEnableDownloadWarningUI[]; |
| 313 extern const char kSdchFilter[]; | 313 extern const char kSdchFilter[]; |
| 314 extern const char kSearchInOmniboxHint[]; | 314 extern const char kSearchInOmniboxHint[]; |
| 315 extern const char kServiceProcess[]; | 315 extern const char kServiceProcess[]; |
| 316 extern const char kServiceAccountLsid[]; | 316 extern const char kServiceAccountLsid[]; |
| 317 extern const char kShowCompositedLayerBorders[]; | 317 extern const char kShowCompositedLayerBorders[]; |
| 318 extern const char kShowCompositedLayerTree[]; |
| 319 extern const char kShowFPSCounter[]; |
| 318 extern const char kShowIcons[]; | 320 extern const char kShowIcons[]; |
| 319 extern const char kShowPaintRects[]; | 321 extern const char kShowPaintRects[]; |
| 320 extern const char kSilentDumpOnDCHECK[]; | 322 extern const char kSilentDumpOnDCHECK[]; |
| 321 extern const char kSimpleDataSource[]; | 323 extern const char kSimpleDataSource[]; |
| 322 extern const char kSingleProcess[]; | 324 extern const char kSingleProcess[]; |
| 323 extern const char kStartMaximized[]; | 325 extern const char kStartMaximized[]; |
| 324 extern const char kSyncAllowInsecureXmppConnection[]; | 326 extern const char kSyncAllowInsecureXmppConnection[]; |
| 325 extern const char kSyncInvalidateXmppLogin[]; | 327 extern const char kSyncInvalidateXmppLogin[]; |
| 326 extern const char kSyncerThreadTimedStop[]; | 328 extern const char kSyncerThreadTimedStop[]; |
| 327 extern const char kSyncNotificationMethod[]; | 329 extern const char kSyncNotificationMethod[]; |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 | 440 |
| 439 // Return true if the switches indicate the seccomp sandbox is enabled. | 441 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 440 bool SeccompSandboxEnabled(); | 442 bool SeccompSandboxEnabled(); |
| 441 | 443 |
| 442 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 444 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 443 // alphabetical order, or in one of the ifdefs (also in order in each section). | 445 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 444 | 446 |
| 445 } // namespace switches | 447 } // namespace switches |
| 446 | 448 |
| 447 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 449 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |