| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 | 247 |
| 248 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 248 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
| 249 extern const char kLocalProfileId[]; | 249 extern const char kLocalProfileId[]; |
| 250 extern const char kPasswordsUseLocalProfileId[]; | 250 extern const char kPasswordsUseLocalProfileId[]; |
| 251 #endif | 251 #endif |
| 252 | 252 |
| 253 // Local state prefs. Please add Profile prefs above instead. | 253 // Local state prefs. Please add Profile prefs above instead. |
| 254 extern const char kCertRevocationCheckingEnabled[]; | 254 extern const char kCertRevocationCheckingEnabled[]; |
| 255 extern const char kSSL3Enabled[]; | 255 extern const char kSSL3Enabled[]; |
| 256 extern const char kTLS1Enabled[]; | 256 extern const char kTLS1Enabled[]; |
| 257 extern const char kCipherSuiteBlacklist[]; |
| 257 | 258 |
| 258 extern const char kMetricsClientID[]; | 259 extern const char kMetricsClientID[]; |
| 259 extern const char kMetricsSessionID[]; | 260 extern const char kMetricsSessionID[]; |
| 260 extern const char kMetricsClientIDTimestamp[]; | 261 extern const char kMetricsClientIDTimestamp[]; |
| 261 extern const char kMetricsReportingEnabled[]; | 262 extern const char kMetricsReportingEnabled[]; |
| 262 extern const char kMetricsInitialLogs[]; | 263 extern const char kMetricsInitialLogs[]; |
| 263 extern const char kMetricsOngoingLogs[]; | 264 extern const char kMetricsOngoingLogs[]; |
| 264 | 265 |
| 265 extern const char kProfileLastUsed[]; | 266 extern const char kProfileLastUsed[]; |
| 266 extern const char kProfileDirectoryMap[]; | 267 extern const char kProfileDirectoryMap[]; |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 extern const char kCustomHandlersEnabled[]; | 510 extern const char kCustomHandlersEnabled[]; |
| 510 | 511 |
| 511 extern const char kUserCreatedLoginItem[]; | 512 extern const char kUserCreatedLoginItem[]; |
| 512 extern const char kBackgroundModeEnabled[]; | 513 extern const char kBackgroundModeEnabled[]; |
| 513 | 514 |
| 514 extern const char kDevicePolicyRefreshRate[]; | 515 extern const char kDevicePolicyRefreshRate[]; |
| 515 extern const char kUserPolicyRefreshRate[]; | 516 extern const char kUserPolicyRefreshRate[]; |
| 516 } // namespace prefs | 517 } // namespace prefs |
| 517 | 518 |
| 518 #endif // CHROME_COMMON_PREF_NAMES_H_ | 519 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |