| 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 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 extern const char kManagedAutoSelectCertificateForUrls[]; | 722 extern const char kManagedAutoSelectCertificateForUrls[]; |
| 723 | 723 |
| 724 extern const char kAudioCaptureAllowed[]; | 724 extern const char kAudioCaptureAllowed[]; |
| 725 extern const char kAudioCaptureAllowedUrls[]; | 725 extern const char kAudioCaptureAllowedUrls[]; |
| 726 extern const char kVideoCaptureAllowed[]; | 726 extern const char kVideoCaptureAllowed[]; |
| 727 extern const char kVideoCaptureAllowedUrls[]; | 727 extern const char kVideoCaptureAllowedUrls[]; |
| 728 | 728 |
| 729 extern const char kHotwordSearchEnabled[]; | 729 extern const char kHotwordSearchEnabled[]; |
| 730 extern const char kHotwordOptInPopupTimesShown[]; | 730 extern const char kHotwordOptInPopupTimesShown[]; |
| 731 | 731 |
| 732 #if defined(OS_CHROMEOS) |
| 733 extern const char kHotwordAppListEnabled[]; |
| 734 #endif |
| 735 |
| 732 #if defined(OS_ANDROID) | 736 #if defined(OS_ANDROID) |
| 733 extern const char kProtectedMediaIdentifierEnabled[]; | 737 extern const char kProtectedMediaIdentifierEnabled[]; |
| 734 #endif | 738 #endif |
| 735 | 739 |
| 736 #if defined(OS_CHROMEOS) | 740 #if defined(OS_CHROMEOS) |
| 737 extern const char kDeviceSettingsCache[]; | 741 extern const char kDeviceSettingsCache[]; |
| 738 extern const char kHardwareKeyboardLayout[]; | 742 extern const char kHardwareKeyboardLayout[]; |
| 739 extern const char kCarrierDealPromoShown[]; | 743 extern const char kCarrierDealPromoShown[]; |
| 740 extern const char kShouldAutoEnroll[]; | 744 extern const char kShouldAutoEnroll[]; |
| 741 extern const char kAutoEnrollmentPowerLimit[]; | 745 extern const char kAutoEnrollmentPowerLimit[]; |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 937 #if defined(OS_WIN) | 941 #if defined(OS_WIN) |
| 938 extern const char kOsPasswordBlank[]; | 942 extern const char kOsPasswordBlank[]; |
| 939 extern const char kOsPasswordLastChanged[]; | 943 extern const char kOsPasswordLastChanged[]; |
| 940 #endif | 944 #endif |
| 941 | 945 |
| 942 extern const char kQuickCheckEnabled[]; | 946 extern const char kQuickCheckEnabled[]; |
| 943 | 947 |
| 944 } // namespace prefs | 948 } // namespace prefs |
| 945 | 949 |
| 946 #endif // CHROME_COMMON_PREF_NAMES_H_ | 950 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |