| 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 extern const char kProfilingFlush[]; | 323 extern const char kProfilingFlush[]; |
| 324 extern const char kProfilingOutputFile[]; | 324 extern const char kProfilingOutputFile[]; |
| 325 extern const char kPromoServerURL[]; | 325 extern const char kPromoServerURL[]; |
| 326 extern const char kProxyAutoDetect[]; | 326 extern const char kProxyAutoDetect[]; |
| 327 extern const char kProxyBypassList[]; | 327 extern const char kProxyBypassList[]; |
| 328 extern const char kProxyPacUrl[]; | 328 extern const char kProxyPacUrl[]; |
| 329 extern const char kProxyServer[]; | 329 extern const char kProxyServer[]; |
| 330 extern const char kQuicMaxPacketLength[]; | 330 extern const char kQuicMaxPacketLength[]; |
| 331 extern const char kQuicVersion[]; | 331 extern const char kQuicVersion[]; |
| 332 extern const char kRecordMode[]; | 332 extern const char kRecordMode[]; |
| 333 extern const char kRemoteDebuggingFrontend[]; | |
| 334 extern const char kRendererPrintPreview[]; | 333 extern const char kRendererPrintPreview[]; |
| 335 extern const char kResetAppListInstallState[]; | 334 extern const char kResetAppListInstallState[]; |
| 336 extern const char kResetVariationState[]; | 335 extern const char kResetVariationState[]; |
| 337 extern const char kRestoreLastSession[]; | 336 extern const char kRestoreLastSession[]; |
| 338 extern const char kSavePageAsMHTML[]; | 337 extern const char kSavePageAsMHTML[]; |
| 339 extern const char kSbURLPrefix[]; | 338 extern const char kSbURLPrefix[]; |
| 340 extern const char kSbDisableAutoUpdate[]; | 339 extern const char kSbDisableAutoUpdate[]; |
| 341 extern const char kSbDisableDownloadProtection[]; | 340 extern const char kSbDisableDownloadProtection[]; |
| 342 extern const char kSbDisableExtensionBlacklist[]; | 341 extern const char kSbDisableExtensionBlacklist[]; |
| 343 extern const char kSbDisableSideEffectFreeWhitelist[]; | 342 extern const char kSbDisableSideEffectFreeWhitelist[]; |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 #else | 463 #else |
| 465 extern const char kEnablePrintPreview[]; | 464 extern const char kEnablePrintPreview[]; |
| 466 #endif | 465 #endif |
| 467 | 466 |
| 468 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 467 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 469 // alphabetical order, or in one of the ifdefs (also in order in each section). | 468 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 470 | 469 |
| 471 } // namespace switches | 470 } // namespace switches |
| 472 | 471 |
| 473 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 472 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |