| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 extern const char kSavePageAsMHTML[]; | 301 extern const char kSavePageAsMHTML[]; |
| 302 extern const char kSbURLPrefix[]; | 302 extern const char kSbURLPrefix[]; |
| 303 extern const char kSbDisableAutoUpdate[]; | 303 extern const char kSbDisableAutoUpdate[]; |
| 304 extern const char kSbDisableDownloadProtection[]; | 304 extern const char kSbDisableDownloadProtection[]; |
| 305 extern const char kScriptBadges[]; | 305 extern const char kScriptBadges[]; |
| 306 extern const char kScriptBubble[]; | 306 extern const char kScriptBubble[]; |
| 307 extern const char kSearchInOmniboxHint[]; | 307 extern const char kSearchInOmniboxHint[]; |
| 308 extern const char kSideloadWipeout[]; | 308 extern const char kSideloadWipeout[]; |
| 309 extern const char kSetToken[]; | 309 extern const char kSetToken[]; |
| 310 extern const char kShowAppList[]; | 310 extern const char kShowAppList[]; |
| 311 extern const char kShowAppListShortcut[]; |
| 311 extern const char kShowAutofillTypePredictions[]; | 312 extern const char kShowAutofillTypePredictions[]; |
| 312 extern const char kShowComponentExtensionOptions[]; | 313 extern const char kShowComponentExtensionOptions[]; |
| 313 extern const char kShowIcons[]; | 314 extern const char kShowIcons[]; |
| 314 extern const char kShowLauncherAlignmentMenu[]; | 315 extern const char kShowLauncherAlignmentMenu[]; |
| 315 extern const char kSilentDumpOnDCHECK[]; | 316 extern const char kSilentDumpOnDCHECK[]; |
| 316 extern const char kSimulateUpgrade[]; | 317 extern const char kSimulateUpgrade[]; |
| 317 extern const char kSocketReusePolicy[]; | 318 extern const char kSocketReusePolicy[]; |
| 318 extern const char kSpeculativeResourcePrefetching[]; | 319 extern const char kSpeculativeResourcePrefetching[]; |
| 319 extern const char kSpeculativeResourcePrefetchingDisabled[]; | 320 extern const char kSpeculativeResourcePrefetchingDisabled[]; |
| 320 extern const char kSpeculativeResourcePrefetchingLearning[]; | 321 extern const char kSpeculativeResourcePrefetchingLearning[]; |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 | 459 |
| 459 namespace chrome { | 460 namespace chrome { |
| 460 | 461 |
| 461 // Returns true if the new frameless constrained window style is enabled. | 462 // Returns true if the new frameless constrained window style is enabled. |
| 462 // TODO(sail): Remove this once the feature is fully baked. | 463 // TODO(sail): Remove this once the feature is fully baked. |
| 463 bool IsFramelessConstrainedDialogEnabled(); | 464 bool IsFramelessConstrainedDialogEnabled(); |
| 464 | 465 |
| 465 } // namespace chrome | 466 } // namespace chrome |
| 466 | 467 |
| 467 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 468 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |