| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 extern const char kTestingChannelID[]; | 350 extern const char kTestingChannelID[]; |
| 351 extern const char kTrustedSpdyProxy[]; | 351 extern const char kTrustedSpdyProxy[]; |
| 352 extern const char kTryChromeAgain[]; | 352 extern const char kTryChromeAgain[]; |
| 353 extern const char kUninstall[]; | 353 extern const char kUninstall[]; |
| 354 extern const char kUseSpdy[]; | 354 extern const char kUseSpdy[]; |
| 355 extern const char kUseGpuInTests[]; | 355 extern const char kUseGpuInTests[]; |
| 356 extern const char kUseSpellingService[]; | 356 extern const char kUseSpellingService[]; |
| 357 extern const char kMaxSpdySessionsPerDomain[]; | 357 extern const char kMaxSpdySessionsPerDomain[]; |
| 358 extern const char kMaxSpdyConcurrentStreams[]; | 358 extern const char kMaxSpdyConcurrentStreams[]; |
| 359 extern const char kUserDataDir[]; | 359 extern const char kUserDataDir[]; |
| 360 extern const char kUseWebBasedSigninFlow[]; | 360 extern const char kUseClientLoginSigninFlow[]; |
| 361 extern const char kVariationsServerURL[]; | 361 extern const char kVariationsServerURL[]; |
| 362 extern const char kVersion[]; | 362 extern const char kVersion[]; |
| 363 extern const char kViewerConnection[]; | 363 extern const char kViewerConnection[]; |
| 364 extern const char kVisitURLs[]; | 364 extern const char kVisitURLs[]; |
| 365 extern const char kWebIntentsNativeServicesEnabled[]; | 365 extern const char kWebIntentsNativeServicesEnabled[]; |
| 366 extern const char kWhitelistedExtensionID[]; | 366 extern const char kWhitelistedExtensionID[]; |
| 367 extern const char kWindowPosition[]; | 367 extern const char kWindowPosition[]; |
| 368 extern const char kWindowSize[]; | 368 extern const char kWindowSize[]; |
| 369 extern const char kWinHttpProxyResolver[]; | 369 extern const char kWinHttpProxyResolver[]; |
| 370 | 370 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 | 469 |
| 470 namespace chrome { | 470 namespace chrome { |
| 471 | 471 |
| 472 // Returns true if the chrome style dialog is enabled. | 472 // Returns true if the chrome style dialog is enabled. |
| 473 // TODO(sail): Remove this once the feature is fully baked. | 473 // TODO(sail): Remove this once the feature is fully baked. |
| 474 bool UseChromeStyleDialogs(); | 474 bool UseChromeStyleDialogs(); |
| 475 | 475 |
| 476 } // namespace chrome | 476 } // namespace chrome |
| 477 | 477 |
| 478 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 478 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |