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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 #if defined(OS_MACOSX) | 294 #if defined(OS_MACOSX) |
295 extern const char kPresentationModeEnabled[]; | 295 extern const char kPresentationModeEnabled[]; |
296 #endif | 296 #endif |
297 | 297 |
298 extern const char kImportBookmarks[]; | 298 extern const char kImportBookmarks[]; |
299 extern const char kImportHistory[]; | 299 extern const char kImportHistory[]; |
300 extern const char kImportHomepage[]; | 300 extern const char kImportHomepage[]; |
301 extern const char kImportSearchEngine[]; | 301 extern const char kImportSearchEngine[]; |
302 extern const char kImportSavedPasswords[]; | 302 extern const char kImportSavedPasswords[]; |
303 | 303 |
| 304 extern const char kEnterpriseWebStoreURL[]; |
| 305 extern const char kEnterpriseWebStoreName[]; |
| 306 |
304 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 307 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
305 extern const char kLocalProfileId[]; | 308 extern const char kLocalProfileId[]; |
306 extern const char kPasswordsUseLocalProfileId[]; | 309 extern const char kPasswordsUseLocalProfileId[]; |
307 #endif | 310 #endif |
308 | 311 |
309 // Local state prefs. Please add Profile prefs above instead. | 312 // Local state prefs. Please add Profile prefs above instead. |
310 extern const char kCertRevocationCheckingEnabled[]; | 313 extern const char kCertRevocationCheckingEnabled[]; |
311 extern const char kSSL3Enabled[]; | 314 extern const char kSSL3Enabled[]; |
312 extern const char kTLS1Enabled[]; | 315 extern const char kTLS1Enabled[]; |
313 extern const char kCipherSuiteBlacklist[]; | 316 extern const char kCipherSuiteBlacklist[]; |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 | 609 |
607 extern const char kDevicePolicyRefreshRate[]; | 610 extern const char kDevicePolicyRefreshRate[]; |
608 extern const char kUserPolicyRefreshRate[]; | 611 extern const char kUserPolicyRefreshRate[]; |
609 | 612 |
610 extern const char kRecoveryComponentVersion[]; | 613 extern const char kRecoveryComponentVersion[]; |
611 extern const char kComponentUpdaterState[]; | 614 extern const char kComponentUpdaterState[]; |
612 | 615 |
613 } // namespace prefs | 616 } // namespace prefs |
614 | 617 |
615 #endif // CHROME_COMMON_PREF_NAMES_H_ | 618 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |