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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 extern const char kDisableSSLFalseStart[]; | 76 extern const char kDisableSSLFalseStart[]; |
77 extern const char kDisableSync[]; | 77 extern const char kDisableSync[]; |
78 extern const char kDisableSyncAutofill[]; | 78 extern const char kDisableSyncAutofill[]; |
79 extern const char kDisableSyncBookmarks[]; | 79 extern const char kDisableSyncBookmarks[]; |
80 extern const char kDisableSyncExtensions[]; | 80 extern const char kDisableSyncExtensions[]; |
81 extern const char kDisableSyncPasswords[]; | 81 extern const char kDisableSyncPasswords[]; |
82 extern const char kDisableSyncPreferences[]; | 82 extern const char kDisableSyncPreferences[]; |
83 extern const char kDisableSyncThemes[]; | 83 extern const char kDisableSyncThemes[]; |
84 extern const char kDisableSyncTypedUrls[]; | 84 extern const char kDisableSyncTypedUrls[]; |
85 extern const char kDisableTabCloseableStateWatcher[]; | 85 extern const char kDisableTabCloseableStateWatcher[]; |
| 86 extern const char kDisableTranslate[]; |
86 extern const char kDisableWebResources[]; | 87 extern const char kDisableWebResources[]; |
87 extern const char kDisableWebSecurity[]; | 88 extern const char kDisableWebSecurity[]; |
88 extern const char kDisableWebSockets[]; | 89 extern const char kDisableWebSockets[]; |
89 extern const char kDiskCacheDir[]; | 90 extern const char kDiskCacheDir[]; |
90 extern const char kDiskCacheSize[]; | 91 extern const char kDiskCacheSize[]; |
91 extern const char kDnsLogDetails[]; | 92 extern const char kDnsLogDetails[]; |
92 extern const char kDnsPrefetchDisable[]; | 93 extern const char kDnsPrefetchDisable[]; |
93 extern const char kDomAutomationController[]; | 94 extern const char kDomAutomationController[]; |
94 extern const char kDumpHistogramsOnExit[]; | 95 extern const char kDumpHistogramsOnExit[]; |
95 extern const char kEnableAcceleratedCompositing[]; | 96 extern const char kEnableAcceleratedCompositing[]; |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 #endif | 347 #endif |
347 // Return true if the switches indicate the seccomp sandbox is enabled. | 348 // Return true if the switches indicate the seccomp sandbox is enabled. |
348 bool SeccompSandboxEnabled(); | 349 bool SeccompSandboxEnabled(); |
349 | 350 |
350 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 351 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
351 // alphabetical order, or in one of the ifdefs (also in order in each section). | 352 // alphabetical order, or in one of the ifdefs (also in order in each section). |
352 | 353 |
353 } // namespace switches | 354 } // namespace switches |
354 | 355 |
355 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 356 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |