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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 extern const char kUseGpuInTests[]; | 354 extern const char kUseGpuInTests[]; |
355 extern const char kUseSpellingService[]; | 355 extern const char kUseSpellingService[]; |
356 extern const char kMaxSpdySessionsPerDomain[]; | 356 extern const char kMaxSpdySessionsPerDomain[]; |
357 extern const char kMaxSpdyConcurrentStreams[]; | 357 extern const char kMaxSpdyConcurrentStreams[]; |
358 extern const char kUserDataDir[]; | 358 extern const char kUserDataDir[]; |
359 extern const char kUseWebBasedSigninFlow[]; | 359 extern const char kUseWebBasedSigninFlow[]; |
360 extern const char kVariationsServerURL[]; | 360 extern const char kVariationsServerURL[]; |
361 extern const char kVersion[]; | 361 extern const char kVersion[]; |
362 extern const char kViewerConnection[]; | 362 extern const char kViewerConnection[]; |
363 extern const char kVisitURLs[]; | 363 extern const char kVisitURLs[]; |
| 364 extern const char kWalletSecureServiceUrl[]; |
| 365 extern const char kWalletServiceUrl[]; |
364 extern const char kWebIntentsNativeServicesEnabled[]; | 366 extern const char kWebIntentsNativeServicesEnabled[]; |
365 extern const char kWebIntentsInvocationEnabled[]; | 367 extern const char kWebIntentsInvocationEnabled[]; |
366 extern const char kWhitelistedExtensionID[]; | 368 extern const char kWhitelistedExtensionID[]; |
367 extern const char kWindowPosition[]; | 369 extern const char kWindowPosition[]; |
368 extern const char kWindowSize[]; | 370 extern const char kWindowSize[]; |
369 extern const char kWinHttpProxyResolver[]; | 371 extern const char kWinHttpProxyResolver[]; |
370 | 372 |
371 #if defined(ENABLE_PLUGIN_INSTALLATION) | 373 #if defined(ENABLE_PLUGIN_INSTALLATION) |
372 extern const char kPluginsMetadataServerURL[]; | 374 extern const char kPluginsMetadataServerURL[]; |
373 #endif | 375 #endif |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 | 471 |
470 namespace chrome { | 472 namespace chrome { |
471 | 473 |
472 // Returns true if the chrome style dialog is enabled. | 474 // Returns true if the chrome style dialog is enabled. |
473 // TODO(sail): Remove this once the feature is fully baked. | 475 // TODO(sail): Remove this once the feature is fully baked. |
474 bool UseChromeStyleDialogs(); | 476 bool UseChromeStyleDialogs(); |
475 | 477 |
476 } // namespace chrome | 478 } // namespace chrome |
477 | 479 |
478 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 480 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |