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