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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 #if defined(ENABLE_SPELLCHECK) | 279 #if defined(ENABLE_SPELLCHECK) |
280 #if defined(OS_ANDROID) | 280 #if defined(OS_ANDROID) |
281 extern const char kEnableAndroidSpellChecker[]; | 281 extern const char kEnableAndroidSpellChecker[]; |
282 #endif | 282 #endif |
283 extern const char kEnableMultilingualSpellChecker[]; | 283 extern const char kEnableMultilingualSpellChecker[]; |
284 extern const char kEnableSpellingAutoCorrect[]; | 284 extern const char kEnableSpellingAutoCorrect[]; |
285 extern const char kEnableSpellingFeedbackFieldTrial[]; | 285 extern const char kEnableSpellingFeedbackFieldTrial[]; |
286 extern const char kSpellingServiceFeedbackUrl[]; | 286 extern const char kSpellingServiceFeedbackUrl[]; |
287 extern const char kSpellingServiceFeedbackIntervalSeconds[]; | 287 extern const char kSpellingServiceFeedbackIntervalSeconds[]; |
288 #endif | 288 #endif |
289 extern const char kSSLVersionMax[]; | |
290 extern const char kSSLVersionMin[]; | |
291 extern const char kSSLVersionFallbackMin[]; | |
292 extern const char kSSLVersionTLSv1[]; | |
293 extern const char kSSLVersionTLSv11[]; | |
294 extern const char kSSLVersionTLSv12[]; | |
295 extern const char kStartMaximized[]; | 289 extern const char kStartMaximized[]; |
296 extern const char kSupervisedUserId[]; | 290 extern const char kSupervisedUserId[]; |
297 extern const char kSupervisedUserSafeSites[]; | 291 extern const char kSupervisedUserSafeSites[]; |
298 extern const char kSupervisedUserSyncToken[]; | 292 extern const char kSupervisedUserSyncToken[]; |
299 extern const char kSystemLogUploadFrequency[]; | 293 extern const char kSystemLogUploadFrequency[]; |
300 extern const char kTestName[]; | 294 extern const char kTestName[]; |
301 extern const char kTrustedSpdyProxy[]; | 295 extern const char kTrustedSpdyProxy[]; |
302 extern const char kTryChromeAgain[]; | 296 extern const char kTryChromeAgain[]; |
303 extern const char kUnlimitedStorage[]; | 297 extern const char kUnlimitedStorage[]; |
304 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; | 298 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 #if defined(ENABLE_TASK_MANAGER) | 405 #if defined(ENABLE_TASK_MANAGER) |
412 bool NewTaskManagerEnabled(); | 406 bool NewTaskManagerEnabled(); |
413 #endif // defined(ENABLE_TASK_MANAGER) | 407 #endif // defined(ENABLE_TASK_MANAGER) |
414 | 408 |
415 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 409 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
416 // alphabetical order, or in one of the ifdefs (also in order in each section). | 410 // alphabetical order, or in one of the ifdefs (also in order in each section). |
417 | 411 |
418 } // namespace switches | 412 } // namespace switches |
419 | 413 |
420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 414 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |