OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 the shared command-line switches used by code in the Chrome | 5 // Defines the shared command-line switches used by code in the Chrome |
6 // directory that don't have anywhere more specific to go. | 6 // directory that don't have anywhere more specific to go. |
7 | 7 |
8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
9 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
10 | 10 |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
154 extern const char kEnableWebRtcEventLoggingFromExtension[]; | 154 extern const char kEnableWebRtcEventLoggingFromExtension[]; |
155 extern const char kExtensionContentVerification[]; | 155 extern const char kExtensionContentVerification[]; |
156 extern const char kExtensionContentVerificationBootstrap[]; | 156 extern const char kExtensionContentVerificationBootstrap[]; |
157 extern const char kExtensionContentVerificationEnforce[]; | 157 extern const char kExtensionContentVerificationEnforce[]; |
158 extern const char kExtensionContentVerificationEnforceStrict[]; | 158 extern const char kExtensionContentVerificationEnforceStrict[]; |
159 extern const char kExtensionsInstallVerification[]; | 159 extern const char kExtensionsInstallVerification[]; |
160 extern const char kExtensionsNotWebstore[]; | 160 extern const char kExtensionsNotWebstore[]; |
161 extern const char kExtensionsUpdateFrequency[]; | 161 extern const char kExtensionsUpdateFrequency[]; |
162 extern const char kFastStart[]; | 162 extern const char kFastStart[]; |
163 extern const char kForceAppMode[]; | 163 extern const char kForceAppMode[]; |
164 extern const char kForceAndroidAppMode[]; | |
Luis Héctor Chávez
2016/11/12 18:03:08
L31 says "// All switches in alphabetical order"
Sergey Poromov
2016/11/14 17:23:23
Done.
| |
164 extern const char kForceFirstRun[]; | 165 extern const char kForceFirstRun[]; |
165 extern const char kForceLocalNtp[]; | 166 extern const char kForceLocalNtp[]; |
166 extern const char kForceVariationIds[]; | 167 extern const char kForceVariationIds[]; |
167 extern const char kHistoryEnableGroupByDomain[]; | 168 extern const char kHistoryEnableGroupByDomain[]; |
168 extern const char kHomePage[]; | 169 extern const char kHomePage[]; |
169 extern const char kHostResolverRetryAttempts[]; | 170 extern const char kHostResolverRetryAttempts[]; |
170 extern const char kHostRules[]; | 171 extern const char kHostRules[]; |
171 extern const char kIgnoreUrlFetcherCertRequests[]; | 172 extern const char kIgnoreUrlFetcherCertRequests[]; |
172 extern const char kIncognito[]; | 173 extern const char kIncognito[]; |
173 extern const char kInstallChromeApp[]; | 174 extern const char kInstallChromeApp[]; |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
400 #if defined(OS_CHROMEOS) | 401 #if defined(OS_CHROMEOS) |
401 bool PowerOverlayEnabled(); | 402 bool PowerOverlayEnabled(); |
402 #endif | 403 #endif |
403 | 404 |
404 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 405 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
405 // alphabetical order, or in one of the ifdefs (also in order in each section). | 406 // alphabetical order, or in one of the ifdefs (also in order in each section). |
406 | 407 |
407 } // namespace switches | 408 } // namespace switches |
408 | 409 |
409 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 410 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |