| 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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 612 extern const char kHotwordAudioLoggingEnabled[]; | 612 extern const char kHotwordAudioLoggingEnabled[]; |
| 613 extern const char kHotwordPreviousLanguage[]; | 613 extern const char kHotwordPreviousLanguage[]; |
| 614 | 614 |
| 615 #if defined(OS_CHROMEOS) | 615 #if defined(OS_CHROMEOS) |
| 616 extern const char kDeviceSettingsCache[]; | 616 extern const char kDeviceSettingsCache[]; |
| 617 extern const char kHardwareKeyboardLayout[]; | 617 extern const char kHardwareKeyboardLayout[]; |
| 618 extern const char kCarrierDealPromoShown[]; | 618 extern const char kCarrierDealPromoShown[]; |
| 619 extern const char kShouldAutoEnroll[]; | 619 extern const char kShouldAutoEnroll[]; |
| 620 extern const char kAutoEnrollmentPowerLimit[]; | 620 extern const char kAutoEnrollmentPowerLimit[]; |
| 621 extern const char kDeviceActivityTimes[]; | 621 extern const char kDeviceActivityTimes[]; |
| 622 extern const char kDeviceLocation[]; | |
| 623 extern const char kExternalStorageDisabled[]; | 622 extern const char kExternalStorageDisabled[]; |
| 624 extern const char kExternalStorageReadOnly[]; | 623 extern const char kExternalStorageReadOnly[]; |
| 625 extern const char kOwnerPrimaryMouseButtonRight[]; | 624 extern const char kOwnerPrimaryMouseButtonRight[]; |
| 626 extern const char kOwnerTapToClickEnabled[]; | 625 extern const char kOwnerTapToClickEnabled[]; |
| 627 extern const char kUptimeLimit[]; | 626 extern const char kUptimeLimit[]; |
| 628 extern const char kRebootAfterUpdate[]; | 627 extern const char kRebootAfterUpdate[]; |
| 629 extern const char kDeviceRobotAnyApiRefreshToken[]; | 628 extern const char kDeviceRobotAnyApiRefreshToken[]; |
| 630 extern const char kDeviceEnrollmentRequisition[]; | 629 extern const char kDeviceEnrollmentRequisition[]; |
| 631 extern const char kDeviceEnrollmentAutoStart[]; | 630 extern const char kDeviceEnrollmentAutoStart[]; |
| 632 extern const char kDeviceEnrollmentCanExit[]; | 631 extern const char kDeviceEnrollmentCanExit[]; |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 #endif | 828 #endif |
| 830 | 829 |
| 831 extern const char kOriginTrialPublicKey[]; | 830 extern const char kOriginTrialPublicKey[]; |
| 832 extern const char kOriginTrialDisabledFeatures[]; | 831 extern const char kOriginTrialDisabledFeatures[]; |
| 833 | 832 |
| 834 extern const char kComponentUpdatesEnabled[]; | 833 extern const char kComponentUpdatesEnabled[]; |
| 835 | 834 |
| 836 } // namespace prefs | 835 } // namespace prefs |
| 837 | 836 |
| 838 #endif // CHROME_COMMON_PREF_NAMES_H_ | 837 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |