| 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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 extern const char kManagedNotificationsBlockedForUrls[]; | 739 extern const char kManagedNotificationsBlockedForUrls[]; |
| 740 extern const char kManagedAutoSelectCertificateForUrls[]; | 740 extern const char kManagedAutoSelectCertificateForUrls[]; |
| 741 | 741 |
| 742 extern const char kAudioCaptureAllowed[]; | 742 extern const char kAudioCaptureAllowed[]; |
| 743 extern const char kAudioCaptureAllowedUrls[]; | 743 extern const char kAudioCaptureAllowedUrls[]; |
| 744 extern const char kVideoCaptureAllowed[]; | 744 extern const char kVideoCaptureAllowed[]; |
| 745 extern const char kVideoCaptureAllowedUrls[]; | 745 extern const char kVideoCaptureAllowedUrls[]; |
| 746 | 746 |
| 747 extern const char kHotwordSearchEnabled[]; | 747 extern const char kHotwordSearchEnabled[]; |
| 748 extern const char kHotwordSearchIncognitoEnabled[]; | 748 extern const char kHotwordSearchIncognitoEnabled[]; |
| 749 extern const char kHotwordSearchTimeoutEnabled[]; |
| 749 | 750 |
| 750 #if defined(OS_ANDROID) | 751 #if defined(OS_ANDROID) |
| 751 extern const char kProtectedMediaIdentifierEnabled[]; | 752 extern const char kProtectedMediaIdentifierEnabled[]; |
| 752 #endif | 753 #endif |
| 753 | 754 |
| 754 #if defined(OS_CHROMEOS) | 755 #if defined(OS_CHROMEOS) |
| 755 extern const char kDeviceSettingsCache[]; | 756 extern const char kDeviceSettingsCache[]; |
| 756 extern const char kHardwareKeyboardLayout[]; | 757 extern const char kHardwareKeyboardLayout[]; |
| 757 extern const char kCarrierDealPromoShown[]; | 758 extern const char kCarrierDealPromoShown[]; |
| 758 extern const char kShouldAutoEnroll[]; | 759 extern const char kShouldAutoEnroll[]; |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 955 #if defined(OS_WIN) | 956 #if defined(OS_WIN) |
| 956 extern const char kOsPasswordBlank[]; | 957 extern const char kOsPasswordBlank[]; |
| 957 extern const char kOsPasswordLastChanged[]; | 958 extern const char kOsPasswordLastChanged[]; |
| 958 #endif | 959 #endif |
| 959 | 960 |
| 960 extern const char kQuickCheckEnabled[]; | 961 extern const char kQuickCheckEnabled[]; |
| 961 | 962 |
| 962 } // namespace prefs | 963 } // namespace prefs |
| 963 | 964 |
| 964 #endif // CHROME_COMMON_PREF_NAMES_H_ | 965 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |