| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| (...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 extern const char kManagedJavaScriptBlockedForUrls[]; | 655 extern const char kManagedJavaScriptBlockedForUrls[]; |
| 656 extern const char kManagedPluginsAllowedForUrls[]; | 656 extern const char kManagedPluginsAllowedForUrls[]; |
| 657 extern const char kManagedPluginsBlockedForUrls[]; | 657 extern const char kManagedPluginsBlockedForUrls[]; |
| 658 extern const char kManagedPopupsAllowedForUrls[]; | 658 extern const char kManagedPopupsAllowedForUrls[]; |
| 659 extern const char kManagedPopupsBlockedForUrls[]; | 659 extern const char kManagedPopupsBlockedForUrls[]; |
| 660 extern const char kManagedNotificationsAllowedForUrls[]; | 660 extern const char kManagedNotificationsAllowedForUrls[]; |
| 661 extern const char kManagedNotificationsBlockedForUrls[]; | 661 extern const char kManagedNotificationsBlockedForUrls[]; |
| 662 extern const char kManagedAutoSelectCertificateForUrls[]; | 662 extern const char kManagedAutoSelectCertificateForUrls[]; |
| 663 | 663 |
| 664 #if defined(OS_CHROMEOS) | 664 #if defined(OS_CHROMEOS) |
| 665 extern const char kSignedSettingsCache[]; | 665 extern const char kDeviceSettingsCache[]; |
| 666 extern const char kHardwareKeyboardLayout[]; | 666 extern const char kHardwareKeyboardLayout[]; |
| 667 extern const char kCarrierDealPromoShown[]; | 667 extern const char kCarrierDealPromoShown[]; |
| 668 extern const char kShouldAutoEnroll[]; | 668 extern const char kShouldAutoEnroll[]; |
| 669 extern const char kAutoEnrollmentPowerLimit[]; | 669 extern const char kAutoEnrollmentPowerLimit[]; |
| 670 extern const char kDeviceActivityTimes[]; | 670 extern const char kDeviceActivityTimes[]; |
| 671 extern const char kDeviceLocation[]; | 671 extern const char kDeviceLocation[]; |
| 672 extern const char kSyncSpareBootstrapToken[]; | 672 extern const char kSyncSpareBootstrapToken[]; |
| 673 extern const char kExternalStorageDisabled[]; | 673 extern const char kExternalStorageDisabled[]; |
| 674 extern const char kUsersWallpaperInfo[]; | 674 extern const char kUsersWallpaperInfo[]; |
| 675 #endif | 675 #endif |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 extern const char kNetworkProfileWarningsLeft[]; | 745 extern const char kNetworkProfileWarningsLeft[]; |
| 746 extern const char kNetworkProfileLastWarningTime[]; | 746 extern const char kNetworkProfileLastWarningTime[]; |
| 747 | 747 |
| 748 #if defined(OS_MACOSX) | 748 #if defined(OS_MACOSX) |
| 749 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 749 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
| 750 #endif // defined(OS_MACOSX) | 750 #endif // defined(OS_MACOSX) |
| 751 | 751 |
| 752 } // namespace prefs | 752 } // namespace prefs |
| 753 | 753 |
| 754 #endif // CHROME_COMMON_PREF_NAMES_H_ | 754 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |