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 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
729 extern const char kManagedAutoSelectCertificateForUrls[]; | 729 extern const char kManagedAutoSelectCertificateForUrls[]; |
730 | 730 |
731 extern const char kAudioCaptureAllowed[]; | 731 extern const char kAudioCaptureAllowed[]; |
732 extern const char kAudioCaptureAllowedUrls[]; | 732 extern const char kAudioCaptureAllowedUrls[]; |
733 extern const char kVideoCaptureAllowed[]; | 733 extern const char kVideoCaptureAllowed[]; |
734 extern const char kVideoCaptureAllowedUrls[]; | 734 extern const char kVideoCaptureAllowedUrls[]; |
735 | 735 |
736 extern const char kHotwordSearchEnabled[]; | 736 extern const char kHotwordSearchEnabled[]; |
737 extern const char kHotwordOptInPopupTimesShown[]; | 737 extern const char kHotwordOptInPopupTimesShown[]; |
738 | 738 |
| 739 #if defined(OS_CHROMEOS) |
| 740 extern const char kHotwordAppListEnabled[]; |
| 741 #endif |
| 742 |
739 #if defined(OS_ANDROID) | 743 #if defined(OS_ANDROID) |
740 extern const char kProtectedMediaIdentifierEnabled[]; | 744 extern const char kProtectedMediaIdentifierEnabled[]; |
741 #endif | 745 #endif |
742 | 746 |
743 #if defined(OS_CHROMEOS) | 747 #if defined(OS_CHROMEOS) |
744 extern const char kDeviceSettingsCache[]; | 748 extern const char kDeviceSettingsCache[]; |
745 extern const char kHardwareKeyboardLayout[]; | 749 extern const char kHardwareKeyboardLayout[]; |
746 extern const char kCarrierDealPromoShown[]; | 750 extern const char kCarrierDealPromoShown[]; |
747 extern const char kShouldAutoEnroll[]; | 751 extern const char kShouldAutoEnroll[]; |
748 extern const char kAutoEnrollmentPowerLimit[]; | 752 extern const char kAutoEnrollmentPowerLimit[]; |
(...skipping 196 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 |