| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 extern const char kUninstall[]; | 342 extern const char kUninstall[]; |
| 343 extern const char kUseSpdy[]; | 343 extern const char kUseSpdy[]; |
| 344 extern const char kUseGpuInTests[]; | 344 extern const char kUseGpuInTests[]; |
| 345 extern const char kMaxSpdySessionsPerDomain[]; | 345 extern const char kMaxSpdySessionsPerDomain[]; |
| 346 extern const char kMaxSpdyConcurrentStreams[]; | 346 extern const char kMaxSpdyConcurrentStreams[]; |
| 347 extern const char kUserDataDir[]; | 347 extern const char kUserDataDir[]; |
| 348 extern const char kVariationsServerURL[]; | 348 extern const char kVariationsServerURL[]; |
| 349 extern const char kVersion[]; | 349 extern const char kVersion[]; |
| 350 extern const char kVisitURLs[]; | 350 extern const char kVisitURLs[]; |
| 351 extern const char kWebIntentsNativeServicesEnabled[]; | 351 extern const char kWebIntentsNativeServicesEnabled[]; |
| 352 extern const char kWebIntentsEnabledForWebContent[]; |
| 352 extern const char kWhitelistedExtensionID[]; | 353 extern const char kWhitelistedExtensionID[]; |
| 353 extern const char kWindowPosition[]; | 354 extern const char kWindowPosition[]; |
| 354 extern const char kWindowSize[]; | 355 extern const char kWindowSize[]; |
| 355 extern const char kWinHttpProxyResolver[]; | 356 extern const char kWinHttpProxyResolver[]; |
| 356 | 357 |
| 357 #if defined(ENABLE_PLUGIN_INSTALLATION) | 358 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 358 extern const char kPluginsMetadataServerURL[]; | 359 extern const char kPluginsMetadataServerURL[]; |
| 359 #endif | 360 #endif |
| 360 | 361 |
| 361 #if defined(OS_ANDROID) | 362 #if defined(OS_ANDROID) |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 | 457 |
| 457 namespace chrome { | 458 namespace chrome { |
| 458 | 459 |
| 459 // Returns true if the new frameless constrained window style is enabled. | 460 // Returns true if the new frameless constrained window style is enabled. |
| 460 // TODO(sail): Remove this once the feature is fully baked. | 461 // TODO(sail): Remove this once the feature is fully baked. |
| 461 bool IsFramelessConstrainedDialogEnabled(); | 462 bool IsFramelessConstrainedDialogEnabled(); |
| 462 | 463 |
| 463 } // namespace chrome | 464 } // namespace chrome |
| 464 | 465 |
| 465 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 466 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |