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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 extern const char kNoManaged[]; | 239 extern const char kNoManaged[]; |
240 extern const char kNoProxyServer[]; | 240 extern const char kNoProxyServer[]; |
241 extern const char kNoPings[]; | 241 extern const char kNoPings[]; |
242 extern const char kNoProtector[]; | 242 extern const char kNoProtector[]; |
243 extern const char kNoRunningInsecureContent[]; | 243 extern const char kNoRunningInsecureContent[]; |
244 extern const char kNoServiceAutorun[]; | 244 extern const char kNoServiceAutorun[]; |
245 extern const char kNoStartupWindow[]; | 245 extern const char kNoStartupWindow[]; |
246 extern const char kNotifyCloudPrintTokenExpired[]; | 246 extern const char kNotifyCloudPrintTokenExpired[]; |
247 extern const char kNtpAppInstallHint[]; | 247 extern const char kNtpAppInstallHint[]; |
248 extern const char kNumPacThreads[]; | 248 extern const char kNumPacThreads[]; |
249 extern const char kOmniboxAggressiveHistoryURL[]; | |
250 extern const char kOmniboxAggressiveHistoryURLAuto[]; | |
251 extern const char kOmniboxAggressiveHistoryURLEnabled[]; | |
252 extern const char kOmniboxAggressiveHistoryURLDisabled[]; | |
253 extern const char kOmniboxInlineHistoryQuickProvider[]; | 249 extern const char kOmniboxInlineHistoryQuickProvider[]; |
254 extern const char kOmniboxInlineHistoryQuickProviderAllowed[]; | 250 extern const char kOmniboxInlineHistoryQuickProviderAllowed[]; |
255 extern const char kOmniboxInlineHistoryQuickProviderProhibited[]; | 251 extern const char kOmniboxInlineHistoryQuickProviderProhibited[]; |
256 extern const char kOnlyBlockSettingThirdPartyCookies[]; | 252 extern const char kOnlyBlockSettingThirdPartyCookies[]; |
257 extern const char kOpenInNewWindow[]; | 253 extern const char kOpenInNewWindow[]; |
258 extern const char kOrganicInstall[]; | 254 extern const char kOrganicInstall[]; |
259 extern const char kPackExtension[]; | 255 extern const char kPackExtension[]; |
260 extern const char kPackExtensionKey[]; | 256 extern const char kPackExtensionKey[]; |
261 extern const char kParentProfile[]; | 257 extern const char kParentProfile[]; |
262 extern const char kPlaybackMode[]; | 258 extern const char kPlaybackMode[]; |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 #else | 408 #else |
413 extern const char kEnablePrintPreview[]; | 409 extern const char kEnablePrintPreview[]; |
414 #endif | 410 #endif |
415 | 411 |
416 // 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 |
417 // 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). |
418 | 414 |
419 } // namespace switches | 415 } // namespace switches |
420 | 416 |
421 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 417 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |