| 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 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 extern const char kManagedAutoSelectCertificateForUrls[]; | 728 extern const char kManagedAutoSelectCertificateForUrls[]; |
| 729 | 729 |
| 730 extern const char kAudioCaptureAllowed[]; | 730 extern const char kAudioCaptureAllowed[]; |
| 731 extern const char kAudioCaptureAllowedUrls[]; | 731 extern const char kAudioCaptureAllowedUrls[]; |
| 732 extern const char kVideoCaptureAllowed[]; | 732 extern const char kVideoCaptureAllowed[]; |
| 733 extern const char kVideoCaptureAllowedUrls[]; | 733 extern const char kVideoCaptureAllowedUrls[]; |
| 734 | 734 |
| 735 extern const char kHotwordSearchEnabled[]; | 735 extern const char kHotwordSearchEnabled[]; |
| 736 extern const char kHotwordOptInPopupTimesShown[]; | 736 extern const char kHotwordOptInPopupTimesShown[]; |
| 737 | 737 |
| 738 #if defined(OS_CHROMEOS) |
| 739 extern const char kHotwordAppListEnabled[]; |
| 740 #endif |
| 741 |
| 738 #if defined(OS_ANDROID) | 742 #if defined(OS_ANDROID) |
| 739 extern const char kProtectedMediaIdentifierEnabled[]; | 743 extern const char kProtectedMediaIdentifierEnabled[]; |
| 740 #endif | 744 #endif |
| 741 | 745 |
| 742 #if defined(OS_CHROMEOS) | 746 #if defined(OS_CHROMEOS) |
| 743 extern const char kDeviceSettingsCache[]; | 747 extern const char kDeviceSettingsCache[]; |
| 744 extern const char kHardwareKeyboardLayout[]; | 748 extern const char kHardwareKeyboardLayout[]; |
| 745 extern const char kCarrierDealPromoShown[]; | 749 extern const char kCarrierDealPromoShown[]; |
| 746 extern const char kShouldAutoEnroll[]; | 750 extern const char kShouldAutoEnroll[]; |
| 747 extern const char kAutoEnrollmentPowerLimit[]; | 751 extern const char kAutoEnrollmentPowerLimit[]; |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 945 #if defined(OS_WIN) | 949 #if defined(OS_WIN) |
| 946 extern const char kOsPasswordBlank[]; | 950 extern const char kOsPasswordBlank[]; |
| 947 extern const char kOsPasswordLastChanged[]; | 951 extern const char kOsPasswordLastChanged[]; |
| 948 #endif | 952 #endif |
| 949 | 953 |
| 950 extern const char kQuickCheckEnabled[]; | 954 extern const char kQuickCheckEnabled[]; |
| 951 | 955 |
| 952 } // namespace prefs | 956 } // namespace prefs |
| 953 | 957 |
| 954 #endif // CHROME_COMMON_PREF_NAMES_H_ | 958 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |