| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 extern const char kEnableNaCl[]; | 167 extern const char kEnableNaCl[]; |
| 168 extern const char kEnableNaClDebug[]; | 168 extern const char kEnableNaClDebug[]; |
| 169 extern const char kEnableP2PApi[]; | 169 extern const char kEnableP2PApi[]; |
| 170 extern const char kEnablePreconnect[]; | 170 extern const char kEnablePreconnect[]; |
| 171 extern const char kEnablePreparsedJsCaching[]; | 171 extern const char kEnablePreparsedJsCaching[]; |
| 172 extern const char kEnablePrintPreview[]; | 172 extern const char kEnablePrintPreview[]; |
| 173 extern const char kEnableRemoting[]; | 173 extern const char kEnableRemoting[]; |
| 174 extern const char kEnableResourceContentSettings[]; | 174 extern const char kEnableResourceContentSettings[]; |
| 175 extern const char kEnableSearchProviderApiV2[]; | 175 extern const char kEnableSearchProviderApiV2[]; |
| 176 extern const char kEnableSnapStart[]; | 176 extern const char kEnableSnapStart[]; |
| 177 extern const char kEnableSpeechInput[]; | |
| 178 extern const char kEnableStatsTable[]; | 177 extern const char kEnableStatsTable[]; |
| 179 extern const char kEnableSync[]; | 178 extern const char kEnableSync[]; |
| 180 extern const char kEnableSyncAutofill[]; | 179 extern const char kEnableSyncAutofill[]; |
| 181 extern const char kEnableSyncPreferences[]; | 180 extern const char kEnableSyncPreferences[]; |
| 182 extern const char kEnableSyncSessions[]; | 181 extern const char kEnableSyncSessions[]; |
| 183 extern const char kEnableSyncTypedUrls[]; | 182 extern const char kEnableSyncTypedUrls[]; |
| 184 extern const char kEnableTcpFastOpen[]; | 183 extern const char kEnableTcpFastOpen[]; |
| 185 extern const char kEnableTopSites[]; | 184 extern const char kEnableTopSites[]; |
| 186 extern const char kEnableTouch[]; | 185 extern const char kEnableTouch[]; |
| 187 extern const char kEnableVerticalTabs[]; | 186 extern const char kEnableVerticalTabs[]; |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 | 437 |
| 439 // Return true if the switches indicate the seccomp sandbox is enabled. | 438 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 440 bool SeccompSandboxEnabled(); | 439 bool SeccompSandboxEnabled(); |
| 441 | 440 |
| 442 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 441 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 443 // alphabetical order, or in one of the ifdefs (also in order in each section). | 442 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 444 | 443 |
| 445 } // namespace switches | 444 } // namespace switches |
| 446 | 445 |
| 447 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 446 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |