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