| 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 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 extern const char kManagedNotificationsAllowedForUrls[]; | 716 extern const char kManagedNotificationsAllowedForUrls[]; |
| 717 extern const char kManagedNotificationsBlockedForUrls[]; | 717 extern const char kManagedNotificationsBlockedForUrls[]; |
| 718 extern const char kManagedAutoSelectCertificateForUrls[]; | 718 extern const char kManagedAutoSelectCertificateForUrls[]; |
| 719 | 719 |
| 720 extern const char kAudioCaptureAllowed[]; | 720 extern const char kAudioCaptureAllowed[]; |
| 721 extern const char kAudioCaptureAllowedUrls[]; | 721 extern const char kAudioCaptureAllowedUrls[]; |
| 722 extern const char kVideoCaptureAllowed[]; | 722 extern const char kVideoCaptureAllowed[]; |
| 723 extern const char kVideoCaptureAllowedUrls[]; | 723 extern const char kVideoCaptureAllowedUrls[]; |
| 724 | 724 |
| 725 extern const char kHotwordSearchEnabled[]; | 725 extern const char kHotwordSearchEnabled[]; |
| 726 extern const char kHotwordSearchIncognitoEnabled[]; | |
| 727 extern const char kHotwordOptInPopupTimesShown[]; | 726 extern const char kHotwordOptInPopupTimesShown[]; |
| 728 | 727 |
| 729 extern const char kHotwordSearchTimeoutEnabled[]; | |
| 730 | |
| 731 #if defined(OS_ANDROID) | 728 #if defined(OS_ANDROID) |
| 732 extern const char kProtectedMediaIdentifierEnabled[]; | 729 extern const char kProtectedMediaIdentifierEnabled[]; |
| 733 #endif | 730 #endif |
| 734 | 731 |
| 735 #if defined(OS_CHROMEOS) | 732 #if defined(OS_CHROMEOS) |
| 736 extern const char kDeviceSettingsCache[]; | 733 extern const char kDeviceSettingsCache[]; |
| 737 extern const char kHardwareKeyboardLayout[]; | 734 extern const char kHardwareKeyboardLayout[]; |
| 738 extern const char kCarrierDealPromoShown[]; | 735 extern const char kCarrierDealPromoShown[]; |
| 739 extern const char kShouldAutoEnroll[]; | 736 extern const char kShouldAutoEnroll[]; |
| 740 extern const char kAutoEnrollmentPowerLimit[]; | 737 extern const char kAutoEnrollmentPowerLimit[]; |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 #if defined(OS_WIN) | 933 #if defined(OS_WIN) |
| 937 extern const char kOsPasswordBlank[]; | 934 extern const char kOsPasswordBlank[]; |
| 938 extern const char kOsPasswordLastChanged[]; | 935 extern const char kOsPasswordLastChanged[]; |
| 939 #endif | 936 #endif |
| 940 | 937 |
| 941 extern const char kQuickCheckEnabled[]; | 938 extern const char kQuickCheckEnabled[]; |
| 942 | 939 |
| 943 } // namespace prefs | 940 } // namespace prefs |
| 944 | 941 |
| 945 #endif // CHROME_COMMON_PREF_NAMES_H_ | 942 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |