| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 extern const char kImportSearchEngine[]; | 262 extern const char kImportSearchEngine[]; |
| 263 extern const char kImportSavedPasswords[]; | 263 extern const char kImportSavedPasswords[]; |
| 264 | 264 |
| 265 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 265 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
| 266 extern const char kLocalProfileId[]; | 266 extern const char kLocalProfileId[]; |
| 267 extern const char kPasswordsUseLocalProfileId[]; | 267 extern const char kPasswordsUseLocalProfileId[]; |
| 268 #endif | 268 #endif |
| 269 | 269 |
| 270 // Local state prefs. Please add Profile prefs above instead. | 270 // Local state prefs. Please add Profile prefs above instead. |
| 271 extern const char kCertRevocationCheckingEnabled[]; | 271 extern const char kCertRevocationCheckingEnabled[]; |
| 272 extern const char kSSL3Enabled[]; | |
| 273 extern const char kTLS1Enabled[]; | |
| 274 extern const char kCipherSuiteBlacklist[]; | 272 extern const char kCipherSuiteBlacklist[]; |
| 275 | 273 |
| 276 extern const char kMetricsClientID[]; | 274 extern const char kMetricsClientID[]; |
| 277 extern const char kMetricsSessionID[]; | 275 extern const char kMetricsSessionID[]; |
| 278 extern const char kMetricsClientIDTimestamp[]; | 276 extern const char kMetricsClientIDTimestamp[]; |
| 279 extern const char kMetricsReportingEnabled[]; | 277 extern const char kMetricsReportingEnabled[]; |
| 280 extern const char kMetricsInitialLogs[]; | 278 extern const char kMetricsInitialLogs[]; |
| 281 extern const char kMetricsOngoingLogs[]; | 279 extern const char kMetricsOngoingLogs[]; |
| 282 | 280 |
| 283 extern const char kProfileLastUsed[]; | 281 extern const char kProfileLastUsed[]; |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 | 538 |
| 541 extern const char kUserCreatedLoginItem[]; | 539 extern const char kUserCreatedLoginItem[]; |
| 542 extern const char kBackgroundModeEnabled[]; | 540 extern const char kBackgroundModeEnabled[]; |
| 543 | 541 |
| 544 extern const char kDevicePolicyRefreshRate[]; | 542 extern const char kDevicePolicyRefreshRate[]; |
| 545 extern const char kUserPolicyRefreshRate[]; | 543 extern const char kUserPolicyRefreshRate[]; |
| 546 | 544 |
| 547 } // namespace prefs | 545 } // namespace prefs |
| 548 | 546 |
| 549 #endif // CHROME_COMMON_PREF_NAMES_H_ | 547 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |