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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 extern const char kAppsNoThrob[]; | 52 extern const char kAppsNoThrob[]; |
53 extern const char kAuthNegotiateDelegateWhitelist[]; | 53 extern const char kAuthNegotiateDelegateWhitelist[]; |
54 extern const char kAuthSchemes[]; | 54 extern const char kAuthSchemes[]; |
55 extern const char kAuthServerWhitelist[]; | 55 extern const char kAuthServerWhitelist[]; |
56 extern const char kAutoLaunchAtStartup[]; | 56 extern const char kAutoLaunchAtStartup[]; |
57 extern const char kAutomationClientChannelID[]; | 57 extern const char kAutomationClientChannelID[]; |
58 extern const char kAutomationReinitializeOnChannelError[]; | 58 extern const char kAutomationReinitializeOnChannelError[]; |
59 extern const char kCheckForUpdateIntervalSec[]; | 59 extern const char kCheckForUpdateIntervalSec[]; |
60 extern const char kCheckCloudPrintConnectorPolicy[]; | 60 extern const char kCheckCloudPrintConnectorPolicy[]; |
61 extern const char kChromeFrame[]; | 61 extern const char kChromeFrame[]; |
62 extern const char kChromeFrameShutdownDelay[]; | |
63 extern const char kChromeVersion[]; | 62 extern const char kChromeVersion[]; |
64 extern const char kCipherSuiteBlacklist[]; | 63 extern const char kCipherSuiteBlacklist[]; |
65 extern const char kClearTokenService[]; | 64 extern const char kClearTokenService[]; |
66 extern const char kCloudPrintDeleteFile[]; | 65 extern const char kCloudPrintDeleteFile[]; |
67 extern const char kCloudPrintFile[]; | 66 extern const char kCloudPrintFile[]; |
68 extern const char kCloudPrintJobTitle[]; | 67 extern const char kCloudPrintJobTitle[]; |
69 extern const char kCloudPrintFileType[]; | 68 extern const char kCloudPrintFileType[]; |
70 extern const char kCloudPrintPrintTicket[]; | 69 extern const char kCloudPrintPrintTicket[]; |
71 extern const char kCloudPrintSetupProxy[]; | 70 extern const char kCloudPrintSetupProxy[]; |
72 extern const char kCloudPrintServiceURL[]; | 71 extern const char kCloudPrintServiceURL[]; |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 #else | 483 #else |
485 extern const char kEnablePrintPreview[]; | 484 extern const char kEnablePrintPreview[]; |
486 #endif | 485 #endif |
487 | 486 |
488 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 487 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
489 // alphabetical order, or in one of the ifdefs (also in order in each section). | 488 // alphabetical order, or in one of the ifdefs (also in order in each section). |
490 | 489 |
491 } // namespace switches | 490 } // namespace switches |
492 | 491 |
493 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 492 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |