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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 extern const char kNoSupervisedUserAcknowledgmentCheck[]; | 241 extern const char kNoSupervisedUserAcknowledgmentCheck[]; |
242 extern const char kNtpAppInstallHint[]; | 242 extern const char kNtpAppInstallHint[]; |
243 extern const char kNumPacThreads[]; | 243 extern const char kNumPacThreads[]; |
244 extern const char kOpenInNewWindow[]; | 244 extern const char kOpenInNewWindow[]; |
245 extern const char kOriginToForceQuicOn[]; | 245 extern const char kOriginToForceQuicOn[]; |
246 extern const char kOriginalProcessStartTime[]; | 246 extern const char kOriginalProcessStartTime[]; |
247 extern const char kOutOfProcessPdf[]; | 247 extern const char kOutOfProcessPdf[]; |
248 extern const char kPackExtension[]; | 248 extern const char kPackExtension[]; |
249 extern const char kPackExtensionKey[]; | 249 extern const char kPackExtensionKey[]; |
250 extern const char kParentProfile[]; | 250 extern const char kParentProfile[]; |
251 extern const char kPerformanceMonitorGathering[]; | |
252 extern const char kPermissionRequestApiScope[]; | 251 extern const char kPermissionRequestApiScope[]; |
253 extern const char kPermissionRequestApiUrl[]; | 252 extern const char kPermissionRequestApiUrl[]; |
254 extern const char kPlaybackMode[]; | 253 extern const char kPlaybackMode[]; |
255 extern const char kPpapiFlashPath[]; | 254 extern const char kPpapiFlashPath[]; |
256 extern const char kPpapiFlashVersion[]; | 255 extern const char kPpapiFlashVersion[]; |
257 extern const char kPrefetchSearchResults[]; | 256 extern const char kPrefetchSearchResults[]; |
258 extern const char kPrerenderFromOmnibox[]; | 257 extern const char kPrerenderFromOmnibox[]; |
259 extern const char kPrerenderFromOmniboxSwitchValueAuto[]; | 258 extern const char kPrerenderFromOmniboxSwitchValueAuto[]; |
260 extern const char kPrerenderFromOmniboxSwitchValueDisabled[]; | 259 extern const char kPrerenderFromOmniboxSwitchValueDisabled[]; |
261 extern const char kPrerenderFromOmniboxSwitchValueEnabled[]; | 260 extern const char kPrerenderFromOmniboxSwitchValueEnabled[]; |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 | 393 |
395 bool AboutInSettingsEnabled(); | 394 bool AboutInSettingsEnabled(); |
396 bool SettingsWindowEnabled(); | 395 bool SettingsWindowEnabled(); |
397 | 396 |
398 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 397 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
399 // alphabetical order, or in one of the ifdefs (also in order in each section). | 398 // alphabetical order, or in one of the ifdefs (also in order in each section). |
400 | 399 |
401 } // namespace switches | 400 } // namespace switches |
402 | 401 |
403 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 402 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |