| 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 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 extern const char kDeviceRobotAnyApiRefreshToken[]; | 769 extern const char kDeviceRobotAnyApiRefreshToken[]; |
| 770 extern const char kDeviceEnrollmentRequisition[]; | 770 extern const char kDeviceEnrollmentRequisition[]; |
| 771 extern const char kDeviceEnrollmentAutoStart[]; | 771 extern const char kDeviceEnrollmentAutoStart[]; |
| 772 extern const char kDeviceEnrollmentCanExit[]; | 772 extern const char kDeviceEnrollmentCanExit[]; |
| 773 extern const char kUsersLRUInputMethod[]; | 773 extern const char kUsersLRUInputMethod[]; |
| 774 extern const char kEchoCheckedOffers[]; | 774 extern const char kEchoCheckedOffers[]; |
| 775 extern const char kCachedMultiProfileUserBehavior[]; | 775 extern const char kCachedMultiProfileUserBehavior[]; |
| 776 extern const char kInitialLocale[]; | 776 extern const char kInitialLocale[]; |
| 777 extern const char kOobeComplete[]; | 777 extern const char kOobeComplete[]; |
| 778 extern const char kDeviceRegistered[]; | 778 extern const char kDeviceRegistered[]; |
| 779 extern const char kUsedPolicyCertificates[]; |
| 779 #endif | 780 #endif |
| 780 | 781 |
| 781 extern const char kClearPluginLSODataEnabled[]; | 782 extern const char kClearPluginLSODataEnabled[]; |
| 782 extern const char kPepperFlashSettingsEnabled[]; | 783 extern const char kPepperFlashSettingsEnabled[]; |
| 783 extern const char kDiskCacheDir[]; | 784 extern const char kDiskCacheDir[]; |
| 784 extern const char kDiskCacheSize[]; | 785 extern const char kDiskCacheSize[]; |
| 785 extern const char kMediaCacheSize[]; | 786 extern const char kMediaCacheSize[]; |
| 786 | 787 |
| 787 extern const char kChromeOsReleaseChannel[]; | 788 extern const char kChromeOsReleaseChannel[]; |
| 788 | 789 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 #if defined(OS_WIN) | 952 #if defined(OS_WIN) |
| 952 extern const char kOsPasswordBlank[]; | 953 extern const char kOsPasswordBlank[]; |
| 953 extern const char kOsPasswordLastChanged[]; | 954 extern const char kOsPasswordLastChanged[]; |
| 954 #endif | 955 #endif |
| 955 | 956 |
| 956 extern const char kQuickCheckEnabled[]; | 957 extern const char kQuickCheckEnabled[]; |
| 957 | 958 |
| 958 } // namespace prefs | 959 } // namespace prefs |
| 959 | 960 |
| 960 #endif // CHROME_COMMON_PREF_NAMES_H_ | 961 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |