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