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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 extern const char kUseSpdy[]; | 351 extern const char kUseSpdy[]; |
352 extern const char kUseGpuInTests[]; | 352 extern const char kUseGpuInTests[]; |
353 extern const char kUseSpellingService[]; | 353 extern const char kUseSpellingService[]; |
354 extern const char kMaxSpdySessionsPerDomain[]; | 354 extern const char kMaxSpdySessionsPerDomain[]; |
355 extern const char kMaxSpdyConcurrentStreams[]; | 355 extern const char kMaxSpdyConcurrentStreams[]; |
356 extern const char kUserDataDir[]; | 356 extern const char kUserDataDir[]; |
357 extern const char kUseWebBasedSigninFlow[]; | 357 extern const char kUseWebBasedSigninFlow[]; |
358 extern const char kVariationsServerURL[]; | 358 extern const char kVariationsServerURL[]; |
359 extern const char kVersion[]; | 359 extern const char kVersion[]; |
360 extern const char kVisitURLs[]; | 360 extern const char kVisitURLs[]; |
| 361 extern const char kWalletServiceUrl[]; |
361 extern const char kWebIntentsNativeServicesEnabled[]; | 362 extern const char kWebIntentsNativeServicesEnabled[]; |
362 extern const char kWebIntentsInvocationEnabled[]; | 363 extern const char kWebIntentsInvocationEnabled[]; |
363 extern const char kWhitelistedExtensionID[]; | 364 extern const char kWhitelistedExtensionID[]; |
364 extern const char kWindowPosition[]; | 365 extern const char kWindowPosition[]; |
365 extern const char kWindowSize[]; | 366 extern const char kWindowSize[]; |
366 extern const char kWinHttpProxyResolver[]; | 367 extern const char kWinHttpProxyResolver[]; |
367 | 368 |
368 #if defined(ENABLE_PLUGIN_INSTALLATION) | 369 #if defined(ENABLE_PLUGIN_INSTALLATION) |
369 extern const char kPluginsMetadataServerURL[]; | 370 extern const char kPluginsMetadataServerURL[]; |
370 #endif | 371 #endif |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 | 464 |
464 namespace chrome { | 465 namespace chrome { |
465 | 466 |
466 // Returns true if the chrome style dialog is enabled. | 467 // Returns true if the chrome style dialog is enabled. |
467 // TODO(sail): Remove this once the feature is fully baked. | 468 // TODO(sail): Remove this once the feature is fully baked. |
468 bool UseChromeStyleDialogs(); | 469 bool UseChromeStyleDialogs(); |
469 | 470 |
470 } // namespace chrome | 471 } // namespace chrome |
471 | 472 |
472 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 473 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |