| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 extern const char kQuicHostWhitelist[]; | 234 extern const char kQuicHostWhitelist[]; |
| 235 extern const char kQuicMaxPacketLength[]; | 235 extern const char kQuicMaxPacketLength[]; |
| 236 extern const char kQuicVersion[]; | 236 extern const char kQuicVersion[]; |
| 237 extern const char kRemoteDebuggingTargets[]; | 237 extern const char kRemoteDebuggingTargets[]; |
| 238 extern const char kRestoreLastSession[]; | 238 extern const char kRestoreLastSession[]; |
| 239 extern const char kSavePageAsMHTML[]; | 239 extern const char kSavePageAsMHTML[]; |
| 240 extern const char kSbDisableAutoUpdate[]; | 240 extern const char kSbDisableAutoUpdate[]; |
| 241 extern const char kSbDisableDownloadProtection[]; | 241 extern const char kSbDisableDownloadProtection[]; |
| 242 extern const char kSbDisableExtensionBlacklist[]; | 242 extern const char kSbDisableExtensionBlacklist[]; |
| 243 extern const char kSbManualDownloadBlacklist[]; | 243 extern const char kSbManualDownloadBlacklist[]; |
| 244 extern const char kSecurityChipShowNonSecureOnly[]; |
| 245 extern const char kSecurityChipShowAll[]; |
| 246 extern const char kSecurityChipAnimation[]; |
| 247 extern const char kSecurityChipAnimationNone[]; |
| 248 extern const char kSecurityChipAnimationNonSecureOnly[]; |
| 249 extern const char kSecurityChipAnimationAll[]; |
| 244 extern const char kServiceProcess[]; | 250 extern const char kServiceProcess[]; |
| 245 extern const char kShowAppList[]; | 251 extern const char kShowAppList[]; |
| 246 extern const char kSilentDebuggerExtensionAPI[]; | 252 extern const char kSilentDebuggerExtensionAPI[]; |
| 247 extern const char kSilentLaunch[]; | 253 extern const char kSilentLaunch[]; |
| 248 extern const char kSimulateCriticalUpdate[]; | 254 extern const char kSimulateCriticalUpdate[]; |
| 249 extern const char kSimulateElevatedRecovery[]; | 255 extern const char kSimulateElevatedRecovery[]; |
| 250 extern const char kSimulateOutdated[]; | 256 extern const char kSimulateOutdated[]; |
| 251 extern const char kSimulateOutdatedNoAU[]; | 257 extern const char kSimulateOutdatedNoAU[]; |
| 252 extern const char kSimulateUpgrade[]; | 258 extern const char kSimulateUpgrade[]; |
| 253 extern const char kSpeculativeResourcePrefetching[]; | 259 extern const char kSpeculativeResourcePrefetching[]; |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 #if defined(OS_CHROMEOS) | 405 #if defined(OS_CHROMEOS) |
| 400 bool PowerOverlayEnabled(); | 406 bool PowerOverlayEnabled(); |
| 401 #endif | 407 #endif |
| 402 | 408 |
| 403 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 409 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 404 // alphabetical order, or in one of the ifdefs (also in order in each section). | 410 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 405 | 411 |
| 406 } // namespace switches | 412 } // namespace switches |
| 407 | 413 |
| 408 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 414 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |