| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 extern const char kSbInfoURLPrefix[]; | 223 extern const char kSbInfoURLPrefix[]; |
| 224 extern const char kSbMacKeyURLPrefix[]; | 224 extern const char kSbMacKeyURLPrefix[]; |
| 225 extern const char kSbDisableAutoUpdate[]; | 225 extern const char kSbDisableAutoUpdate[]; |
| 226 extern const char kSdchFilter[]; | 226 extern const char kSdchFilter[]; |
| 227 extern const char kSearchInOmniboxHint[]; | 227 extern const char kSearchInOmniboxHint[]; |
| 228 extern const char kServiceProcess[]; | 228 extern const char kServiceProcess[]; |
| 229 extern const char kServiceAccountLsid[]; | 229 extern const char kServiceAccountLsid[]; |
| 230 extern const char kShowCompositedLayerBorders[]; | 230 extern const char kShowCompositedLayerBorders[]; |
| 231 extern const char kShowIcons[]; | 231 extern const char kShowIcons[]; |
| 232 extern const char kShowPaintRects[]; | 232 extern const char kShowPaintRects[]; |
| 233 extern const char kShowPrivacyDashboardLink[]; |
| 233 extern const char kSilentDumpOnDCHECK[]; | 234 extern const char kSilentDumpOnDCHECK[]; |
| 234 extern const char kSimpleDataSource[]; | 235 extern const char kSimpleDataSource[]; |
| 235 extern const char kSingleProcess[]; | 236 extern const char kSingleProcess[]; |
| 236 extern const char kStartMaximized[]; | 237 extern const char kStartMaximized[]; |
| 237 extern const char kSyncAllowPlain[]; | 238 extern const char kSyncAllowPlain[]; |
| 238 extern const char kSyncDisableTls[]; | 239 extern const char kSyncDisableTls[]; |
| 239 extern const char kSyncEmail[]; | 240 extern const char kSyncEmail[]; |
| 240 extern const char kSyncerThreadTimedStop[]; | 241 extern const char kSyncerThreadTimedStop[]; |
| 241 extern const char kSyncNotificationMethod[]; | 242 extern const char kSyncNotificationMethod[]; |
| 242 extern const char kSyncPassword[]; | 243 extern const char kSyncPassword[]; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 #endif | 336 #endif |
| 336 // Return true if the switches indicate the seccomp sandbox is enabled. | 337 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 337 bool SeccompSandboxEnabled(); | 338 bool SeccompSandboxEnabled(); |
| 338 | 339 |
| 339 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 340 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 340 // alphabetical order, or in one of the ifdefs (also in order in each section). | 341 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 341 | 342 |
| 342 } // namespace switches | 343 } // namespace switches |
| 343 | 344 |
| 344 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 345 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |