| 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 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 extern const char kManagedJavaScriptBlockedForUrls[]; | 737 extern const char kManagedJavaScriptBlockedForUrls[]; |
| 738 extern const char kManagedPluginsAllowedForUrls[]; | 738 extern const char kManagedPluginsAllowedForUrls[]; |
| 739 extern const char kManagedPluginsBlockedForUrls[]; | 739 extern const char kManagedPluginsBlockedForUrls[]; |
| 740 extern const char kManagedPopupsAllowedForUrls[]; | 740 extern const char kManagedPopupsAllowedForUrls[]; |
| 741 extern const char kManagedPopupsBlockedForUrls[]; | 741 extern const char kManagedPopupsBlockedForUrls[]; |
| 742 extern const char kManagedNotificationsAllowedForUrls[]; | 742 extern const char kManagedNotificationsAllowedForUrls[]; |
| 743 extern const char kManagedNotificationsBlockedForUrls[]; | 743 extern const char kManagedNotificationsBlockedForUrls[]; |
| 744 extern const char kManagedAutoSelectCertificateForUrls[]; | 744 extern const char kManagedAutoSelectCertificateForUrls[]; |
| 745 | 745 |
| 746 extern const char kAudioCaptureAllowed[]; | 746 extern const char kAudioCaptureAllowed[]; |
| 747 extern const char kAudioCaptureAllowedUrls[]; |
| 747 extern const char kVideoCaptureAllowed[]; | 748 extern const char kVideoCaptureAllowed[]; |
| 749 extern const char kVideoCaptureAllowedUrls[]; |
| 748 | 750 |
| 749 #if defined(OS_CHROMEOS) | 751 #if defined(OS_CHROMEOS) |
| 750 extern const char kDeviceSettingsCache[]; | 752 extern const char kDeviceSettingsCache[]; |
| 751 extern const char kHardwareKeyboardLayout[]; | 753 extern const char kHardwareKeyboardLayout[]; |
| 752 extern const char kCarrierDealPromoShown[]; | 754 extern const char kCarrierDealPromoShown[]; |
| 753 extern const char kShouldAutoEnroll[]; | 755 extern const char kShouldAutoEnroll[]; |
| 754 extern const char kAutoEnrollmentPowerLimit[]; | 756 extern const char kAutoEnrollmentPowerLimit[]; |
| 755 extern const char kDeviceActivityTimes[]; | 757 extern const char kDeviceActivityTimes[]; |
| 756 extern const char kDeviceLocation[]; | 758 extern const char kDeviceLocation[]; |
| 757 extern const char kSyncSpareBootstrapToken[]; | 759 extern const char kSyncSpareBootstrapToken[]; |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 extern const char kAppListLaunchCount[]; | 915 extern const char kAppListLaunchCount[]; |
| 914 extern const char kLastAppListAppLaunchPing[]; | 916 extern const char kLastAppListAppLaunchPing[]; |
| 915 extern const char kAppListAppLaunchCount[]; | 917 extern const char kAppListAppLaunchCount[]; |
| 916 | 918 |
| 917 extern const char kDRMSalt[]; | 919 extern const char kDRMSalt[]; |
| 918 extern const char kEnableDRM[]; | 920 extern const char kEnableDRM[]; |
| 919 | 921 |
| 920 } // namespace prefs | 922 } // namespace prefs |
| 921 | 923 |
| 922 #endif // CHROME_COMMON_PREF_NAMES_H_ | 924 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |