| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 extern const char kEnableFastback[]; | 98 extern const char kEnableFastback[]; |
| 99 extern const char kEnableFileCookies[]; | 99 extern const char kEnableFileCookies[]; |
| 100 extern const char kEnableGPUPlugin[]; | 100 extern const char kEnableGPUPlugin[]; |
| 101 extern const char kEnableGPURendering[]; | 101 extern const char kEnableGPURendering[]; |
| 102 extern const char kEnableIndexedDatabase[]; | 102 extern const char kEnableIndexedDatabase[]; |
| 103 extern const char kEnableIPv6[]; | 103 extern const char kEnableIPv6[]; |
| 104 extern const char kEnableLogging[]; | 104 extern const char kEnableLogging[]; |
| 105 extern const char kEnableMonitorProfile[]; | 105 extern const char kEnableMonitorProfile[]; |
| 106 extern const char kEnableNaCl[]; | 106 extern const char kEnableNaCl[]; |
| 107 extern const char kEnableNativeWebWorkers[]; | 107 extern const char kEnableNativeWebWorkers[]; |
| 108 extern const char kEnablePreparsedJsCaching[]; |
| 108 extern const char kEnablePreconnect[]; | 109 extern const char kEnablePreconnect[]; |
| 109 extern const char kEnablePrivacyBlacklists[]; | 110 extern const char kEnablePrivacyBlacklists[]; |
| 110 extern const char kEnableRendererAccessibility[]; | 111 extern const char kEnableRendererAccessibility[]; |
| 111 extern const char kEnableStatsTable[]; | 112 extern const char kEnableStatsTable[]; |
| 112 extern const char kEnableSync[]; | 113 extern const char kEnableSync[]; |
| 113 extern const char kEnableSyncAutofill[]; | 114 extern const char kEnableSyncAutofill[]; |
| 114 extern const char kEnableSyncBookmarks[]; | 115 extern const char kEnableSyncBookmarks[]; |
| 115 extern const char kEnableSyncPreferences[]; | 116 extern const char kEnableSyncPreferences[]; |
| 116 extern const char kEnableSyncThemes[]; | 117 extern const char kEnableSyncThemes[]; |
| 117 extern const char kEnableSyncTypedUrls[]; | 118 extern const char kEnableSyncTypedUrls[]; |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 #endif | 290 #endif |
| 290 // Return true if the switches indicate the seccomp sandbox is enabled. | 291 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 291 bool SeccompSandboxEnabled(); | 292 bool SeccompSandboxEnabled(); |
| 292 | 293 |
| 293 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 294 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 294 // alphabetical order, or in one of the ifdefs (also in order in each section). | 295 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 295 | 296 |
| 296 } // namespace switches | 297 } // namespace switches |
| 297 | 298 |
| 298 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 299 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |