| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 extern const char kSafePlugins[]; | 301 extern const char kSafePlugins[]; |
| 302 extern const char kSbInfoURLPrefix[]; | 302 extern const char kSbInfoURLPrefix[]; |
| 303 extern const char kSbMacKeyURLPrefix[]; | 303 extern const char kSbMacKeyURLPrefix[]; |
| 304 extern const char kSbDisableAutoUpdate[]; | 304 extern const char kSbDisableAutoUpdate[]; |
| 305 extern const char kSbEnableDownloadProtection[]; | 305 extern const char kSbEnableDownloadProtection[]; |
| 306 extern const char kSdchFilter[]; | 306 extern const char kSdchFilter[]; |
| 307 extern const char kSearchInOmniboxHint[]; | 307 extern const char kSearchInOmniboxHint[]; |
| 308 extern const char kServiceProcess[]; | 308 extern const char kServiceProcess[]; |
| 309 extern const char kServiceAccountLsid[]; | 309 extern const char kServiceAccountLsid[]; |
| 310 extern const char kShowCompositedLayerBorders[]; | 310 extern const char kShowCompositedLayerBorders[]; |
| 311 extern const char kShowCompositedLayerTree[]; |
| 312 extern const char kShowFPSCounter[]; |
| 311 extern const char kShowIcons[]; | 313 extern const char kShowIcons[]; |
| 312 extern const char kShowPaintRects[]; | 314 extern const char kShowPaintRects[]; |
| 313 extern const char kSilentDumpOnDCHECK[]; | 315 extern const char kSilentDumpOnDCHECK[]; |
| 314 extern const char kSimpleDataSource[]; | 316 extern const char kSimpleDataSource[]; |
| 315 extern const char kSingleProcess[]; | 317 extern const char kSingleProcess[]; |
| 316 extern const char kStartMaximized[]; | 318 extern const char kStartMaximized[]; |
| 317 extern const char kSyncAllowInsecureXmppConnection[]; | 319 extern const char kSyncAllowInsecureXmppConnection[]; |
| 318 extern const char kSyncInvalidateXmppLogin[]; | 320 extern const char kSyncInvalidateXmppLogin[]; |
| 319 extern const char kSyncerThreadTimedStop[]; | 321 extern const char kSyncerThreadTimedStop[]; |
| 320 extern const char kSyncNotificationMethod[]; | 322 extern const char kSyncNotificationMethod[]; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 | 426 |
| 425 // Return true if the switches indicate the seccomp sandbox is enabled. | 427 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 426 bool SeccompSandboxEnabled(); | 428 bool SeccompSandboxEnabled(); |
| 427 | 429 |
| 428 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 430 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 429 // alphabetical order, or in one of the ifdefs (also in order in each section). | 431 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 430 | 432 |
| 431 } // namespace switches | 433 } // namespace switches |
| 432 | 434 |
| 433 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 435 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |