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 the shared command-line switches used by code in the Chrome | 5 // Defines the shared command-line switches used by code in the Chrome |
6 // directory that don't have anywhere more specific to go. | 6 // directory that don't have anywhere more specific to go. |
7 | 7 |
8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
9 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
10 | 10 |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 extern const char kSimulateOutdated[]; | 213 extern const char kSimulateOutdated[]; |
214 extern const char kSimulateOutdatedNoAU[]; | 214 extern const char kSimulateOutdatedNoAU[]; |
215 extern const char kSimulateUpgrade[]; | 215 extern const char kSimulateUpgrade[]; |
216 extern const char kSSLKeyLogFile[]; | 216 extern const char kSSLKeyLogFile[]; |
217 extern const char kStartMaximized[]; | 217 extern const char kStartMaximized[]; |
218 extern const char kStartStackProfiler[]; | 218 extern const char kStartStackProfiler[]; |
219 extern const char kSupervisedUserId[]; | 219 extern const char kSupervisedUserId[]; |
220 extern const char kSupervisedUserSyncToken[]; | 220 extern const char kSupervisedUserSyncToken[]; |
221 extern const char kSystemLogUploadFrequency[]; | 221 extern const char kSystemLogUploadFrequency[]; |
222 extern const char kTestName[]; | 222 extern const char kTestName[]; |
| 223 extern const char kTrustedDownloadSources[]; |
223 extern const char kTryChromeAgain[]; | 224 extern const char kTryChromeAgain[]; |
224 extern const char kUnlimitedStorage[]; | 225 extern const char kUnlimitedStorage[]; |
225 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; | 226 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; |
226 extern const char kUnsafePacUrl[]; | 227 extern const char kUnsafePacUrl[]; |
227 extern const char kUserAgent[]; | 228 extern const char kUserAgent[]; |
228 extern const char kUserDataDir[]; | 229 extern const char kUserDataDir[]; |
229 extern const char kUseSimpleCacheBackend[]; | 230 extern const char kUseSimpleCacheBackend[]; |
230 extern const char kValidateCrx[]; | 231 extern const char kValidateCrx[]; |
231 extern const char kVersion[]; | 232 extern const char kVersion[]; |
232 extern const char kWindowPosition[]; | 233 extern const char kWindowPosition[]; |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 #if defined(OS_WIN) | 369 #if defined(OS_WIN) |
369 bool GDITextPrintingEnabled(); | 370 bool GDITextPrintingEnabled(); |
370 #endif | 371 #endif |
371 | 372 |
372 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 373 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
373 // alphabetical order, or in one of the ifdefs (also in order in each section). | 374 // alphabetical order, or in one of the ifdefs (also in order in each section). |
374 | 375 |
375 } // namespace switches | 376 } // namespace switches |
376 | 377 |
377 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 378 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |