| 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 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 723 extern const char kDeviceEnrollmentAutoStart[]; | 723 extern const char kDeviceEnrollmentAutoStart[]; |
| 724 extern const char kDeviceEnrollmentCanExit[]; | 724 extern const char kDeviceEnrollmentCanExit[]; |
| 725 extern const char kUsersLRUInputMethod[]; | 725 extern const char kUsersLRUInputMethod[]; |
| 726 extern const char kEchoCheckedOffers[]; | 726 extern const char kEchoCheckedOffers[]; |
| 727 extern const char kCachedMultiProfileUserBehavior[]; | 727 extern const char kCachedMultiProfileUserBehavior[]; |
| 728 extern const char kInitialLocale[]; | 728 extern const char kInitialLocale[]; |
| 729 extern const char kOobeComplete[]; | 729 extern const char kOobeComplete[]; |
| 730 extern const char kDeviceRegistered[]; | 730 extern const char kDeviceRegistered[]; |
| 731 extern const char kUsedPolicyCertificates[]; | 731 extern const char kUsedPolicyCertificates[]; |
| 732 extern const char kServerBackedDeviceState[]; | 732 extern const char kServerBackedDeviceState[]; |
| 733 extern const char kCustomizationDefaultWallpaperURL[]; |
| 733 #endif | 734 #endif |
| 734 | 735 |
| 735 extern const char kClearPluginLSODataEnabled[]; | 736 extern const char kClearPluginLSODataEnabled[]; |
| 736 extern const char kPepperFlashSettingsEnabled[]; | 737 extern const char kPepperFlashSettingsEnabled[]; |
| 737 extern const char kDiskCacheDir[]; | 738 extern const char kDiskCacheDir[]; |
| 738 extern const char kDiskCacheSize[]; | 739 extern const char kDiskCacheSize[]; |
| 739 extern const char kMediaCacheSize[]; | 740 extern const char kMediaCacheSize[]; |
| 740 | 741 |
| 741 extern const char kChromeOsReleaseChannel[]; | 742 extern const char kChromeOsReleaseChannel[]; |
| 742 | 743 |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 903 | 904 |
| 904 #if defined(OS_ANDROID) | 905 #if defined(OS_ANDROID) |
| 905 extern const char kPartnerBookmarkMappings[]; | 906 extern const char kPartnerBookmarkMappings[]; |
| 906 #endif | 907 #endif |
| 907 | 908 |
| 908 extern const char kQuickCheckEnabled[]; | 909 extern const char kQuickCheckEnabled[]; |
| 909 | 910 |
| 910 } // namespace prefs | 911 } // namespace prefs |
| 911 | 912 |
| 912 #endif // CHROME_COMMON_PREF_NAMES_H_ | 913 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |