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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 extern const char kNtpAppInstallHint[]; | 246 extern const char kNtpAppInstallHint[]; |
247 extern const char kNumPacThreads[]; | 247 extern const char kNumPacThreads[]; |
248 extern const char kOpenInNewWindow[]; | 248 extern const char kOpenInNewWindow[]; |
249 extern const char kOriginToForceQuicOn[]; | 249 extern const char kOriginToForceQuicOn[]; |
250 extern const char kOriginalProcessStartTime[]; | 250 extern const char kOriginalProcessStartTime[]; |
251 extern const char kOutOfProcessPdf[]; | 251 extern const char kOutOfProcessPdf[]; |
252 extern const char kPackExtension[]; | 252 extern const char kPackExtension[]; |
253 extern const char kPackExtensionKey[]; | 253 extern const char kPackExtensionKey[]; |
254 extern const char kParentProfile[]; | 254 extern const char kParentProfile[]; |
255 extern const char kPerformanceMonitorGathering[]; | 255 extern const char kPerformanceMonitorGathering[]; |
| 256 extern const char kPermissionRequestApiScope[]; |
256 extern const char kPermissionRequestApiUrl[]; | 257 extern const char kPermissionRequestApiUrl[]; |
257 extern const char kPlaybackMode[]; | 258 extern const char kPlaybackMode[]; |
258 extern const char kPpapiFlashPath[]; | 259 extern const char kPpapiFlashPath[]; |
259 extern const char kPpapiFlashVersion[]; | 260 extern const char kPpapiFlashVersion[]; |
260 extern const char kPrefetchSearchResults[]; | 261 extern const char kPrefetchSearchResults[]; |
261 extern const char kPrerenderFromOmnibox[]; | 262 extern const char kPrerenderFromOmnibox[]; |
262 extern const char kPrerenderFromOmniboxSwitchValueAuto[]; | 263 extern const char kPrerenderFromOmniboxSwitchValueAuto[]; |
263 extern const char kPrerenderFromOmniboxSwitchValueDisabled[]; | 264 extern const char kPrerenderFromOmniboxSwitchValueDisabled[]; |
264 extern const char kPrerenderFromOmniboxSwitchValueEnabled[]; | 265 extern const char kPrerenderFromOmniboxSwitchValueEnabled[]; |
265 extern const char kPrerenderMode[]; | 266 extern const char kPrerenderMode[]; |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 #endif | 400 #endif |
400 | 401 |
401 bool SettingsWindowEnabled(); | 402 bool SettingsWindowEnabled(); |
402 | 403 |
403 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 404 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
404 // alphabetical order, or in one of the ifdefs (also in order in each section). | 405 // alphabetical order, or in one of the ifdefs (also in order in each section). |
405 | 406 |
406 } // namespace switches | 407 } // namespace switches |
407 | 408 |
408 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 409 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |