| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 extern const char kEnableGPURendering[]; | 106 extern const char kEnableGPURendering[]; |
| 107 extern const char kEnableIndexedDatabase[]; | 107 extern const char kEnableIndexedDatabase[]; |
| 108 extern const char kEnableIPv6[]; | 108 extern const char kEnableIPv6[]; |
| 109 extern const char kEnableLogging[]; | 109 extern const char kEnableLogging[]; |
| 110 extern const char kEnableMonitorProfile[]; | 110 extern const char kEnableMonitorProfile[]; |
| 111 extern const char kEnableNaCl[]; | 111 extern const char kEnableNaCl[]; |
| 112 extern const char kEnableNativeWebWorkers[]; | 112 extern const char kEnableNativeWebWorkers[]; |
| 113 extern const char kEnablePreparsedJsCaching[]; | 113 extern const char kEnablePreparsedJsCaching[]; |
| 114 extern const char kEnablePreconnect[]; | 114 extern const char kEnablePreconnect[]; |
| 115 extern const char kEnablePrintPreview[]; | 115 extern const char kEnablePrintPreview[]; |
| 116 extern const char kEnablePrivacyBlacklists[]; | |
| 117 extern const char kEnableStatsTable[]; | 116 extern const char kEnableStatsTable[]; |
| 118 extern const char kEnableSync[]; | 117 extern const char kEnableSync[]; |
| 119 extern const char kEnableSyncAutofill[]; | 118 extern const char kEnableSyncAutofill[]; |
| 120 extern const char kEnableSyncBookmarks[]; | 119 extern const char kEnableSyncBookmarks[]; |
| 121 extern const char kEnableSyncExtensions[]; | 120 extern const char kEnableSyncExtensions[]; |
| 122 extern const char kEnableSyncPasswords[]; | 121 extern const char kEnableSyncPasswords[]; |
| 123 extern const char kEnableSyncPreferences[]; | 122 extern const char kEnableSyncPreferences[]; |
| 124 extern const char kEnableSyncThemes[]; | 123 extern const char kEnableSyncThemes[]; |
| 125 extern const char kEnableSyncTypedUrls[]; | 124 extern const char kEnableSyncTypedUrls[]; |
| 126 extern const char kEnableTabbedOptions[]; | 125 extern const char kEnableTabbedOptions[]; |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 #endif | 332 #endif |
| 334 // Return true if the switches indicate the seccomp sandbox is enabled. | 333 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 335 bool SeccompSandboxEnabled(); | 334 bool SeccompSandboxEnabled(); |
| 336 | 335 |
| 337 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 336 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 338 // alphabetical order, or in one of the ifdefs (also in order in each section). | 337 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 339 | 338 |
| 340 } // namespace switches | 339 } // namespace switches |
| 341 | 340 |
| 342 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 341 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |