| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 extern const char kPermissionRequestApiScope[]; | 253 extern const char kPermissionRequestApiScope[]; |
| 254 extern const char kPermissionRequestApiUrl[]; | 254 extern const char kPermissionRequestApiUrl[]; |
| 255 extern const char kPpapiFlashPath[]; | 255 extern const char kPpapiFlashPath[]; |
| 256 extern const char kPpapiFlashVersion[]; | 256 extern const char kPpapiFlashVersion[]; |
| 257 extern const char kPrefetchSearchResults[]; | 257 extern const char kPrefetchSearchResults[]; |
| 258 extern const char kPrerenderFromOmnibox[]; | 258 extern const char kPrerenderFromOmnibox[]; |
| 259 extern const char kPrerenderFromOmniboxSwitchValueAuto[]; | 259 extern const char kPrerenderFromOmniboxSwitchValueAuto[]; |
| 260 extern const char kPrerenderFromOmniboxSwitchValueDisabled[]; | 260 extern const char kPrerenderFromOmniboxSwitchValueDisabled[]; |
| 261 extern const char kPrerenderFromOmniboxSwitchValueEnabled[]; | 261 extern const char kPrerenderFromOmniboxSwitchValueEnabled[]; |
| 262 extern const char kPrerenderMode[]; | 262 extern const char kPrerenderMode[]; |
| 263 extern const char kPrerenderModeSwitchValueAuto[]; | |
| 264 extern const char kPrerenderModeSwitchValueDisabled[]; | 263 extern const char kPrerenderModeSwitchValueDisabled[]; |
| 265 extern const char kPrerenderModeSwitchValueEnabled[]; | 264 extern const char kPrerenderModeSwitchValueEnabled[]; |
| 266 extern const char kPrivetIPv6Only[]; | 265 extern const char kPrivetIPv6Only[]; |
| 267 extern const char kProductVersion[]; | 266 extern const char kProductVersion[]; |
| 268 extern const char kProfileDirectory[]; | 267 extern const char kProfileDirectory[]; |
| 269 extern const char kProfilingAtStart[]; | 268 extern const char kProfilingAtStart[]; |
| 270 extern const char kProfilingFile[]; | 269 extern const char kProfilingFile[]; |
| 271 extern const char kProfilingFlush[]; | 270 extern const char kProfilingFlush[]; |
| 272 extern const char kProxyAutoDetect[]; | 271 extern const char kProxyAutoDetect[]; |
| 273 extern const char kProxyBypassList[]; | 272 extern const char kProxyBypassList[]; |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 #if defined(OS_CHROMEOS) | 413 #if defined(OS_CHROMEOS) |
| 415 bool PowerOverlayEnabled(); | 414 bool PowerOverlayEnabled(); |
| 416 #endif | 415 #endif |
| 417 | 416 |
| 418 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 417 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 419 // alphabetical order, or in one of the ifdefs (also in order in each section). | 418 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 420 | 419 |
| 421 } // namespace switches | 420 } // namespace switches |
| 422 | 421 |
| 423 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 422 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |