| 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 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 extern const char kForceAppMode[]; | 200 extern const char kForceAppMode[]; |
| 201 extern const char kForceFirstRun[]; | 201 extern const char kForceFirstRun[]; |
| 202 extern const char kForceVariationIds[]; | 202 extern const char kForceVariationIds[]; |
| 203 extern const char kGSSAPILibraryName[]; | 203 extern const char kGSSAPILibraryName[]; |
| 204 extern const char kHelp[]; | 204 extern const char kHelp[]; |
| 205 extern const char kHelpShort[]; | 205 extern const char kHelpShort[]; |
| 206 extern const char kHideIcons[]; | 206 extern const char kHideIcons[]; |
| 207 extern const char kHistoryEnableGroupByDomain[]; | 207 extern const char kHistoryEnableGroupByDomain[]; |
| 208 extern const char kHomePage[]; | 208 extern const char kHomePage[]; |
| 209 extern const char kHostRules[]; | 209 extern const char kHostRules[]; |
| 210 extern const char kHostResolverParallelism[]; | |
| 211 extern const char kHostResolverRetryAttempts[]; | 210 extern const char kHostResolverRetryAttempts[]; |
| 212 extern const char kIgnoreUrlFetcherCertRequests[]; | 211 extern const char kIgnoreUrlFetcherCertRequests[]; |
| 213 extern const char kIncognito[]; | 212 extern const char kIncognito[]; |
| 214 extern const char kInstallChromeApp[]; | 213 extern const char kInstallChromeApp[]; |
| 215 extern const char kInstallEphemeralAppFromWebstore[]; | 214 extern const char kInstallEphemeralAppFromWebstore[]; |
| 216 extern const char kInstantProcess[]; | 215 extern const char kInstantProcess[]; |
| 217 extern const char kInvalidationUseGCMChannel[]; | 216 extern const char kInvalidationUseGCMChannel[]; |
| 218 extern const char kIpcFuzzerTestcase[]; | 217 extern const char kIpcFuzzerTestcase[]; |
| 219 extern const char kJavaScriptHarmony[]; | 218 extern const char kJavaScriptHarmony[]; |
| 220 extern const char kKeepAliveForTest[]; | 219 extern const char kKeepAliveForTest[]; |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 #if defined(OS_CHROMEOS) | 410 #if defined(OS_CHROMEOS) |
| 412 bool PowerOverlayEnabled(); | 411 bool PowerOverlayEnabled(); |
| 413 #endif | 412 #endif |
| 414 | 413 |
| 415 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 414 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 416 // alphabetical order, or in one of the ifdefs (also in order in each section). | 415 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 417 | 416 |
| 418 } // namespace switches | 417 } // namespace switches |
| 419 | 418 |
| 420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 419 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |