| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 extern const char kQuicConnectionOptions[]; | 264 extern const char kQuicConnectionOptions[]; |
| 265 extern const char kQuicMaxPacketLength[]; | 265 extern const char kQuicMaxPacketLength[]; |
| 266 extern const char kQuicVersion[]; | 266 extern const char kQuicVersion[]; |
| 267 extern const char kRememberCertErrorDecisions[]; | 267 extern const char kRememberCertErrorDecisions[]; |
| 268 extern const char kResetAppListInstallState[]; | 268 extern const char kResetAppListInstallState[]; |
| 269 extern const char kRestoreLastSession[]; | 269 extern const char kRestoreLastSession[]; |
| 270 extern const char kSavePageAsMHTML[]; | 270 extern const char kSavePageAsMHTML[]; |
| 271 extern const char kSbDisableAutoUpdate[]; | 271 extern const char kSbDisableAutoUpdate[]; |
| 272 extern const char kSbDisableDownloadProtection[]; | 272 extern const char kSbDisableDownloadProtection[]; |
| 273 extern const char kSbDisableExtensionBlacklist[]; | 273 extern const char kSbDisableExtensionBlacklist[]; |
| 274 extern const char kSbDisableSideEffectFreeWhitelist[]; | |
| 275 extern const char kServiceProcess[]; | 274 extern const char kServiceProcess[]; |
| 276 extern const char kSilentDebuggerExtensionAPI[]; | 275 extern const char kSilentDebuggerExtensionAPI[]; |
| 277 extern const char kSilentLaunch[]; | 276 extern const char kSilentLaunch[]; |
| 278 extern const char kSetToken[]; | 277 extern const char kSetToken[]; |
| 279 extern const char kShowAppList[]; | 278 extern const char kShowAppList[]; |
| 280 extern const char kShowIcons[]; | 279 extern const char kShowIcons[]; |
| 281 extern const char kShowSavedCopy[]; | 280 extern const char kShowSavedCopy[]; |
| 282 extern const char kEnableShowSavedCopyPrimary[]; | 281 extern const char kEnableShowSavedCopyPrimary[]; |
| 283 extern const char kEnableShowSavedCopySecondary[]; | 282 extern const char kEnableShowSavedCopySecondary[]; |
| 284 extern const char kDisableShowSavedCopy[]; | 283 extern const char kDisableShowSavedCopy[]; |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 #if defined(OS_CHROMEOS) | 405 #if defined(OS_CHROMEOS) |
| 407 bool PowerOverlayEnabled(); | 406 bool PowerOverlayEnabled(); |
| 408 #endif | 407 #endif |
| 409 | 408 |
| 410 // 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 |
| 411 // 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). |
| 412 | 411 |
| 413 } // namespace switches | 412 } // namespace switches |
| 414 | 413 |
| 415 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 414 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |