| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 extern const char kQuicConnectionOptions[]; | 267 extern const char kQuicConnectionOptions[]; |
| 268 extern const char kQuicMaxPacketLength[]; | 268 extern const char kQuicMaxPacketLength[]; |
| 269 extern const char kQuicVersion[]; | 269 extern const char kQuicVersion[]; |
| 270 extern const char kRememberCertErrorDecisions[]; | 270 extern const char kRememberCertErrorDecisions[]; |
| 271 extern const char kResetAppListInstallState[]; | 271 extern const char kResetAppListInstallState[]; |
| 272 extern const char kRestoreLastSession[]; | 272 extern const char kRestoreLastSession[]; |
| 273 extern const char kSavePageAsMHTML[]; | 273 extern const char kSavePageAsMHTML[]; |
| 274 extern const char kSbDisableAutoUpdate[]; | 274 extern const char kSbDisableAutoUpdate[]; |
| 275 extern const char kSbDisableDownloadProtection[]; | 275 extern const char kSbDisableDownloadProtection[]; |
| 276 extern const char kSbDisableExtensionBlacklist[]; | 276 extern const char kSbDisableExtensionBlacklist[]; |
| 277 extern const char kSbDisableSideEffectFreeWhitelist[]; | |
| 278 extern const char kServiceProcess[]; | 277 extern const char kServiceProcess[]; |
| 279 extern const char kSilentDebuggerExtensionAPI[]; | 278 extern const char kSilentDebuggerExtensionAPI[]; |
| 280 extern const char kSilentLaunch[]; | 279 extern const char kSilentLaunch[]; |
| 281 extern const char kSetToken[]; | 280 extern const char kSetToken[]; |
| 282 extern const char kShowAppList[]; | 281 extern const char kShowAppList[]; |
| 283 extern const char kShowIcons[]; | 282 extern const char kShowIcons[]; |
| 284 extern const char kShowSavedCopy[]; | 283 extern const char kShowSavedCopy[]; |
| 285 extern const char kEnableShowSavedCopyPrimary[]; | 284 extern const char kEnableShowSavedCopyPrimary[]; |
| 286 extern const char kEnableShowSavedCopySecondary[]; | 285 extern const char kEnableShowSavedCopySecondary[]; |
| 287 extern const char kDisableShowSavedCopy[]; | 286 extern const char kDisableShowSavedCopy[]; |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 #if defined(OS_CHROMEOS) | 408 #if defined(OS_CHROMEOS) |
| 410 bool PowerOverlayEnabled(); | 409 bool PowerOverlayEnabled(); |
| 411 #endif | 410 #endif |
| 412 | 411 |
| 413 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 412 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 414 // alphabetical order, or in one of the ifdefs (also in order in each section). | 413 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 415 | 414 |
| 416 } // namespace switches | 415 } // namespace switches |
| 417 | 416 |
| 418 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 417 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |