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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 extern const char kSafePlugins[]; | 276 extern const char kSafePlugins[]; |
277 extern const char kSbInfoURLPrefix[]; | 277 extern const char kSbInfoURLPrefix[]; |
278 extern const char kSbMacKeyURLPrefix[]; | 278 extern const char kSbMacKeyURLPrefix[]; |
279 extern const char kSbDisableAutoUpdate[]; | 279 extern const char kSbDisableAutoUpdate[]; |
280 extern const char kSdchFilter[]; | 280 extern const char kSdchFilter[]; |
281 extern const char kSearchInOmniboxHint[]; | 281 extern const char kSearchInOmniboxHint[]; |
282 extern const char kServiceProcess[]; | 282 extern const char kServiceProcess[]; |
283 extern const char kServiceAccountLsid[]; | 283 extern const char kServiceAccountLsid[]; |
284 extern const char kShowCompositedLayerBorders[]; | 284 extern const char kShowCompositedLayerBorders[]; |
285 extern const char kShowIcons[]; | 285 extern const char kShowIcons[]; |
286 extern const char kShowInstantOptIn[]; | |
287 extern const char kShowPaintRects[]; | 286 extern const char kShowPaintRects[]; |
288 extern const char kSilentDumpOnDCHECK[]; | 287 extern const char kSilentDumpOnDCHECK[]; |
289 extern const char kSimpleDataSource[]; | 288 extern const char kSimpleDataSource[]; |
290 extern const char kSingleProcess[]; | 289 extern const char kSingleProcess[]; |
291 extern const char kStartMaximized[]; | 290 extern const char kStartMaximized[]; |
292 extern const char kSyncAllowInsecureXmppConnection[]; | 291 extern const char kSyncAllowInsecureXmppConnection[]; |
293 extern const char kSyncInvalidateXmppLogin[]; | 292 extern const char kSyncInvalidateXmppLogin[]; |
294 extern const char kSyncerThreadTimedStop[]; | 293 extern const char kSyncerThreadTimedStop[]; |
295 extern const char kSyncNotificationMethod[]; | 294 extern const char kSyncNotificationMethod[]; |
296 extern const char kSyncNotificationHost[]; | 295 extern const char kSyncNotificationHost[]; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 #endif | 392 #endif |
394 // Return true if the switches indicate the seccomp sandbox is enabled. | 393 // Return true if the switches indicate the seccomp sandbox is enabled. |
395 bool SeccompSandboxEnabled(); | 394 bool SeccompSandboxEnabled(); |
396 | 395 |
397 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 396 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
398 // alphabetical order, or in one of the ifdefs (also in order in each section). | 397 // alphabetical order, or in one of the ifdefs (also in order in each section). |
399 | 398 |
400 } // namespace switches | 399 } // namespace switches |
401 | 400 |
402 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 401 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |