OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
6 | 6 |
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 extern const char kImportSearchEngine[]; | 298 extern const char kImportSearchEngine[]; |
299 extern const char kImportSavedPasswords[]; | 299 extern const char kImportSavedPasswords[]; |
300 | 300 |
301 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 301 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
302 extern const char kLocalProfileId[]; | 302 extern const char kLocalProfileId[]; |
303 extern const char kPasswordsUseLocalProfileId[]; | 303 extern const char kPasswordsUseLocalProfileId[]; |
304 #endif | 304 #endif |
305 | 305 |
306 // Local state prefs. Please add Profile prefs above instead. | 306 // Local state prefs. Please add Profile prefs above instead. |
307 extern const char kCertRevocationCheckingEnabled[]; | 307 extern const char kCertRevocationCheckingEnabled[]; |
| 308 extern const char kSSL3Enabled[]; |
| 309 extern const char kTLS1Enabled[]; |
308 extern const char kCipherSuiteBlacklist[]; | 310 extern const char kCipherSuiteBlacklist[]; |
309 | 311 |
310 extern const char kMetricsClientID[]; | 312 extern const char kMetricsClientID[]; |
311 extern const char kMetricsSessionID[]; | 313 extern const char kMetricsSessionID[]; |
312 extern const char kMetricsClientIDTimestamp[]; | 314 extern const char kMetricsClientIDTimestamp[]; |
313 extern const char kMetricsReportingEnabled[]; | 315 extern const char kMetricsReportingEnabled[]; |
314 extern const char kMetricsInitialLogs[]; | 316 extern const char kMetricsInitialLogs[]; |
315 extern const char kMetricsOngoingLogs[]; | 317 extern const char kMetricsOngoingLogs[]; |
316 | 318 |
317 extern const char kProfileLastUsed[]; | 319 extern const char kProfileLastUsed[]; |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
592 | 594 |
593 extern const char kUserCreatedLoginItem[]; | 595 extern const char kUserCreatedLoginItem[]; |
594 extern const char kBackgroundModeEnabled[]; | 596 extern const char kBackgroundModeEnabled[]; |
595 | 597 |
596 extern const char kDevicePolicyRefreshRate[]; | 598 extern const char kDevicePolicyRefreshRate[]; |
597 extern const char kUserPolicyRefreshRate[]; | 599 extern const char kUserPolicyRefreshRate[]; |
598 | 600 |
599 } // namespace prefs | 601 } // namespace prefs |
600 | 602 |
601 #endif // CHROME_COMMON_PREF_NAMES_H_ | 603 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |