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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 extern const char kAppsNewInstallBubble[]; | 49 extern const char kAppsNewInstallBubble[]; |
50 extern const char kAppsUseNativeFrame[]; | 50 extern const char kAppsUseNativeFrame[]; |
51 extern const char kAuthExtensionPath[]; | 51 extern const char kAuthExtensionPath[]; |
52 extern const char kAuthNegotiateDelegateWhitelist[]; | 52 extern const char kAuthNegotiateDelegateWhitelist[]; |
53 extern const char kAuthSchemes[]; | 53 extern const char kAuthSchemes[]; |
54 extern const char kAuthServerWhitelist[]; | 54 extern const char kAuthServerWhitelist[]; |
55 extern const char kAutoLaunchAtStartup[]; | 55 extern const char kAutoLaunchAtStartup[]; |
56 extern const char kAutomationClientChannelID[]; | 56 extern const char kAutomationClientChannelID[]; |
57 extern const char kAutomationReinitializeOnChannelError[]; | 57 extern const char kAutomationReinitializeOnChannelError[]; |
58 extern const char kCancelFirstRun[]; | 58 extern const char kCancelFirstRun[]; |
| 59 extern const char kCertificateTransparencyLog[]; |
59 extern const char kCheckForUpdateIntervalSec[]; | 60 extern const char kCheckForUpdateIntervalSec[]; |
60 extern const char kCheckCloudPrintConnectorPolicy[]; | 61 extern const char kCheckCloudPrintConnectorPolicy[]; |
61 extern const char kChromeFrame[]; | 62 extern const char kChromeFrame[]; |
62 extern const char kChromeVersion[]; | 63 extern const char kChromeVersion[]; |
63 extern const char kCipherSuiteBlacklist[]; | 64 extern const char kCipherSuiteBlacklist[]; |
64 extern const char kClearTokenService[]; | 65 extern const char kClearTokenService[]; |
65 extern const char kCloudPrintDeleteFile[]; | 66 extern const char kCloudPrintDeleteFile[]; |
66 extern const char kCloudPrintFile[]; | 67 extern const char kCloudPrintFile[]; |
67 extern const char kCloudPrintJobTitle[]; | 68 extern const char kCloudPrintJobTitle[]; |
68 extern const char kCloudPrintFileType[]; | 69 extern const char kCloudPrintFileType[]; |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 #else | 470 #else |
470 extern const char kEnablePrintPreview[]; | 471 extern const char kEnablePrintPreview[]; |
471 #endif | 472 #endif |
472 | 473 |
473 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 474 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
474 // alphabetical order, or in one of the ifdefs (also in order in each section). | 475 // alphabetical order, or in one of the ifdefs (also in order in each section). |
475 | 476 |
476 } // namespace switches | 477 } // namespace switches |
477 | 478 |
478 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 479 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |