| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 extern const char kOmniboxHistoryQuickProviderNewScoringDisabled[]; | 256 extern const char kOmniboxHistoryQuickProviderNewScoringDisabled[]; |
| 257 extern const char kOmniboxHistoryQuickProviderReorderForInlining[]; | 257 extern const char kOmniboxHistoryQuickProviderReorderForInlining[]; |
| 258 extern const char kOmniboxHistoryQuickProviderReorderForInliningEnabled[]; | 258 extern const char kOmniboxHistoryQuickProviderReorderForInliningEnabled[]; |
| 259 extern const char kOmniboxHistoryQuickProviderReorderForInliningDisabled[]; | 259 extern const char kOmniboxHistoryQuickProviderReorderForInliningDisabled[]; |
| 260 extern const char kOmniboxInlineHistoryQuickProvider[]; | 260 extern const char kOmniboxInlineHistoryQuickProvider[]; |
| 261 extern const char kOmniboxInlineHistoryQuickProviderAllowed[]; | 261 extern const char kOmniboxInlineHistoryQuickProviderAllowed[]; |
| 262 extern const char kOmniboxInlineHistoryQuickProviderProhibited[]; | 262 extern const char kOmniboxInlineHistoryQuickProviderProhibited[]; |
| 263 extern const char kOnlyBlockSettingThirdPartyCookies[]; | 263 extern const char kOnlyBlockSettingThirdPartyCookies[]; |
| 264 extern const char kOpenInNewWindow[]; | 264 extern const char kOpenInNewWindow[]; |
| 265 extern const char kOrganicInstall[]; | 265 extern const char kOrganicInstall[]; |
| 266 extern const char kOriginPortToForceQuicOn[]; |
| 266 extern const char kPackExtension[]; | 267 extern const char kPackExtension[]; |
| 267 extern const char kPackExtensionKey[]; | 268 extern const char kPackExtensionKey[]; |
| 268 extern const char kParentProfile[]; | 269 extern const char kParentProfile[]; |
| 269 extern const char kPerformanceMonitorGathering[]; | 270 extern const char kPerformanceMonitorGathering[]; |
| 270 extern const char kPerformCrashAnalysis[]; | 271 extern const char kPerformCrashAnalysis[]; |
| 271 extern const char kPlaybackMode[]; | 272 extern const char kPlaybackMode[]; |
| 272 extern const char kPnaclDir[]; | 273 extern const char kPnaclDir[]; |
| 273 extern const char kPpapiFlashInProcess[]; | 274 extern const char kPpapiFlashInProcess[]; |
| 274 extern const char kPpapiFlashPath[]; | 275 extern const char kPpapiFlashPath[]; |
| 275 extern const char kPpapiFlashVersion[]; | 276 extern const char kPpapiFlashVersion[]; |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 | 470 |
| 470 namespace chrome { | 471 namespace chrome { |
| 471 | 472 |
| 472 // Returns true if the chrome style dialog is enabled. | 473 // Returns true if the chrome style dialog is enabled. |
| 473 // TODO(sail): Remove this once the feature is fully baked. | 474 // TODO(sail): Remove this once the feature is fully baked. |
| 474 bool UseChromeStyleDialogs(); | 475 bool UseChromeStyleDialogs(); |
| 475 | 476 |
| 476 } // namespace chrome | 477 } // namespace chrome |
| 477 | 478 |
| 478 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 479 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |