Chromium Code Reviews| 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 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 690 extern const char kManagedJavaScriptAllowedForUrls[]; | 690 extern const char kManagedJavaScriptAllowedForUrls[]; |
| 691 extern const char kManagedJavaScriptBlockedForUrls[]; | 691 extern const char kManagedJavaScriptBlockedForUrls[]; |
| 692 extern const char kManagedPluginsAllowedForUrls[]; | 692 extern const char kManagedPluginsAllowedForUrls[]; |
| 693 extern const char kManagedPluginsBlockedForUrls[]; | 693 extern const char kManagedPluginsBlockedForUrls[]; |
| 694 extern const char kManagedPopupsAllowedForUrls[]; | 694 extern const char kManagedPopupsAllowedForUrls[]; |
| 695 extern const char kManagedPopupsBlockedForUrls[]; | 695 extern const char kManagedPopupsBlockedForUrls[]; |
| 696 extern const char kManagedNotificationsAllowedForUrls[]; | 696 extern const char kManagedNotificationsAllowedForUrls[]; |
| 697 extern const char kManagedNotificationsBlockedForUrls[]; | 697 extern const char kManagedNotificationsBlockedForUrls[]; |
| 698 extern const char kManagedAutoSelectCertificateForUrls[]; | 698 extern const char kManagedAutoSelectCertificateForUrls[]; |
| 699 | 699 |
| 700 // Used for the managed mode to calculate and store a hash of the password | |
|
Pam (message me for reviews)
2013/01/14 15:37:50
Up with the kManagedMode*List names
Adrian Kuegel
2013/01/19 01:21:32
Done.
| |
| 701 // of the custodian of a managed user. | |
| 702 extern const char kManagedModeLocalPassphrase[]; | |
| 703 extern const char kManagedModeLocalSalt[]; | |
| 704 | |
| 700 extern const char kAudioCaptureAllowed[]; | 705 extern const char kAudioCaptureAllowed[]; |
| 701 extern const char kVideoCaptureAllowed[]; | 706 extern const char kVideoCaptureAllowed[]; |
| 702 | 707 |
| 703 #if defined(OS_CHROMEOS) | 708 #if defined(OS_CHROMEOS) |
| 704 extern const char kDeviceSettingsCache[]; | 709 extern const char kDeviceSettingsCache[]; |
| 705 extern const char kHardwareKeyboardLayout[]; | 710 extern const char kHardwareKeyboardLayout[]; |
| 706 extern const char kCarrierDealPromoShown[]; | 711 extern const char kCarrierDealPromoShown[]; |
| 707 extern const char kShouldAutoEnroll[]; | 712 extern const char kShouldAutoEnroll[]; |
| 708 extern const char kAutoEnrollmentPowerLimit[]; | 713 extern const char kAutoEnrollmentPowerLimit[]; |
| 709 extern const char kDeviceActivityTimes[]; | 714 extern const char kDeviceActivityTimes[]; |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 818 extern const char kLastPolicyStatisticsUpdate[]; | 823 extern const char kLastPolicyStatisticsUpdate[]; |
| 819 | 824 |
| 820 #if defined(OS_CHROMEOS) | 825 #if defined(OS_CHROMEOS) |
| 821 extern const char kRLZBrand[]; | 826 extern const char kRLZBrand[]; |
| 822 extern const char kRLZDisabled[]; | 827 extern const char kRLZDisabled[]; |
| 823 #endif | 828 #endif |
| 824 | 829 |
| 825 } // namespace prefs | 830 } // namespace prefs |
| 826 | 831 |
| 827 #endif // CHROME_COMMON_PREF_NAMES_H_ | 832 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |