| 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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 extern const char kUseGpuInTests[]; | 346 extern const char kUseGpuInTests[]; |
| 347 extern const char kUseSpellingService[]; | 347 extern const char kUseSpellingService[]; |
| 348 extern const char kMaxSpdySessionsPerDomain[]; | 348 extern const char kMaxSpdySessionsPerDomain[]; |
| 349 extern const char kMaxSpdyConcurrentStreams[]; | 349 extern const char kMaxSpdyConcurrentStreams[]; |
| 350 extern const char kUserDataDir[]; | 350 extern const char kUserDataDir[]; |
| 351 extern const char kUseWebBasedSigninFlow[]; | 351 extern const char kUseWebBasedSigninFlow[]; |
| 352 extern const char kVariationsServerURL[]; | 352 extern const char kVariationsServerURL[]; |
| 353 extern const char kVersion[]; | 353 extern const char kVersion[]; |
| 354 extern const char kVisitURLs[]; | 354 extern const char kVisitURLs[]; |
| 355 extern const char kWebIntentsNativeServicesEnabled[]; | 355 extern const char kWebIntentsNativeServicesEnabled[]; |
| 356 extern const char kWebIntentsInvocationEnabled[]; |
| 356 extern const char kWhitelistedExtensionID[]; | 357 extern const char kWhitelistedExtensionID[]; |
| 357 extern const char kWindowPosition[]; | 358 extern const char kWindowPosition[]; |
| 358 extern const char kWindowSize[]; | 359 extern const char kWindowSize[]; |
| 359 extern const char kWinHttpProxyResolver[]; | 360 extern const char kWinHttpProxyResolver[]; |
| 360 | 361 |
| 361 #if defined(ENABLE_PLUGIN_INSTALLATION) | 362 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 362 extern const char kPluginsMetadataServerURL[]; | 363 extern const char kPluginsMetadataServerURL[]; |
| 363 #endif | 364 #endif |
| 364 | 365 |
| 365 #if defined(OS_ANDROID) | 366 #if defined(OS_ANDROID) |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 | 452 |
| 452 namespace chrome { | 453 namespace chrome { |
| 453 | 454 |
| 454 // Returns true if the new frameless constrained window style is enabled. | 455 // Returns true if the new frameless constrained window style is enabled. |
| 455 // TODO(sail): Remove this once the feature is fully baked. | 456 // TODO(sail): Remove this once the feature is fully baked. |
| 456 bool IsFramelessConstrainedDialogEnabled(); | 457 bool IsFramelessConstrainedDialogEnabled(); |
| 457 | 458 |
| 458 } // namespace chrome | 459 } // namespace chrome |
| 459 | 460 |
| 460 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 461 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |