| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 #if defined(OS_ANDROID) | 284 #if defined(OS_ANDROID) |
| 285 extern const char kEnableAndroidSpellChecker[]; | 285 extern const char kEnableAndroidSpellChecker[]; |
| 286 #endif | 286 #endif |
| 287 extern const char kDisableMultilingualSpellChecker[]; | 287 extern const char kDisableMultilingualSpellChecker[]; |
| 288 extern const char kEnableMultilingualSpellChecker[]; | 288 extern const char kEnableMultilingualSpellChecker[]; |
| 289 extern const char kEnableSpellingAutoCorrect[]; | 289 extern const char kEnableSpellingAutoCorrect[]; |
| 290 extern const char kEnableSpellingFeedbackFieldTrial[]; | 290 extern const char kEnableSpellingFeedbackFieldTrial[]; |
| 291 extern const char kSpellingServiceFeedbackUrl[]; | 291 extern const char kSpellingServiceFeedbackUrl[]; |
| 292 extern const char kSpellingServiceFeedbackIntervalSeconds[]; | 292 extern const char kSpellingServiceFeedbackIntervalSeconds[]; |
| 293 #endif | 293 #endif |
| 294 extern const char kSSLVersionMax[]; | |
| 295 extern const char kSSLVersionMin[]; | |
| 296 extern const char kSSLVersionFallbackMin[]; | |
| 297 extern const char kSSLVersionTLSv1[]; | |
| 298 extern const char kSSLVersionTLSv11[]; | |
| 299 extern const char kSSLVersionTLSv12[]; | |
| 300 extern const char kStartMaximized[]; | 294 extern const char kStartMaximized[]; |
| 301 extern const char kSupervisedUserId[]; | 295 extern const char kSupervisedUserId[]; |
| 302 extern const char kSupervisedUserSafeSites[]; | 296 extern const char kSupervisedUserSafeSites[]; |
| 303 extern const char kSupervisedUserSyncToken[]; | 297 extern const char kSupervisedUserSyncToken[]; |
| 304 extern const char kSystemLogUploadFrequency[]; | 298 extern const char kSystemLogUploadFrequency[]; |
| 305 extern const char kTestName[]; | 299 extern const char kTestName[]; |
| 306 extern const char kTrustedSpdyProxy[]; | 300 extern const char kTrustedSpdyProxy[]; |
| 307 extern const char kTryChromeAgain[]; | 301 extern const char kTryChromeAgain[]; |
| 308 extern const char kUnlimitedStorage[]; | 302 extern const char kUnlimitedStorage[]; |
| 309 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; | 303 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 #if defined(ENABLE_TASK_MANAGER) | 415 #if defined(ENABLE_TASK_MANAGER) |
| 422 bool NewTaskManagerEnabled(); | 416 bool NewTaskManagerEnabled(); |
| 423 #endif // defined(ENABLE_TASK_MANAGER) | 417 #endif // defined(ENABLE_TASK_MANAGER) |
| 424 | 418 |
| 425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 419 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 426 // alphabetical order, or in one of the ifdefs (also in order in each section). | 420 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 427 | 421 |
| 428 } // namespace switches | 422 } // namespace switches |
| 429 | 423 |
| 430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 424 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |