| 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 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 880 extern const char kOverscrollMinimumThresholdStartTouchpad[]; | 880 extern const char kOverscrollMinimumThresholdStartTouchpad[]; |
| 881 extern const char kOverscrollVerticalThresholdStart[]; | 881 extern const char kOverscrollVerticalThresholdStart[]; |
| 882 extern const char kOverscrollHorizontalResistThreshold[]; | 882 extern const char kOverscrollHorizontalResistThreshold[]; |
| 883 extern const char kOverscrollVerticalResistThreshold[]; | 883 extern const char kOverscrollVerticalResistThreshold[]; |
| 884 extern const char kGestureConfigIsTrustworthy[]; | 884 extern const char kGestureConfigIsTrustworthy[]; |
| 885 #endif | 885 #endif |
| 886 | 886 |
| 887 extern const char kNetworkProfileWarningsLeft[]; | 887 extern const char kNetworkProfileWarningsLeft[]; |
| 888 extern const char kNetworkProfileLastWarningTime[]; | 888 extern const char kNetworkProfileLastWarningTime[]; |
| 889 | 889 |
| 890 extern const char kLastPolicyStatisticsUpdate[]; | |
| 891 | |
| 892 #if defined(OS_CHROMEOS) | 890 #if defined(OS_CHROMEOS) |
| 893 extern const char kRLZBrand[]; | 891 extern const char kRLZBrand[]; |
| 894 extern const char kRLZDisabled[]; | 892 extern const char kRLZDisabled[]; |
| 895 #endif | 893 #endif |
| 896 | 894 |
| 897 extern const char kAppListProfile[]; | 895 extern const char kAppListProfile[]; |
| 898 extern const char kRestartWithAppList[]; | 896 extern const char kRestartWithAppList[]; |
| 899 | 897 |
| 900 extern const char kLastAppListLaunchPing[]; | 898 extern const char kLastAppListLaunchPing[]; |
| 901 extern const char kAppListLaunchCount[]; | 899 extern const char kAppListLaunchCount[]; |
| 902 extern const char kLastAppListAppLaunchPing[]; | 900 extern const char kLastAppListAppLaunchPing[]; |
| 903 extern const char kAppListAppLaunchCount[]; | 901 extern const char kAppListAppLaunchCount[]; |
| 904 | 902 |
| 905 extern const char kModuleConflictBubbleShown[]; | 903 extern const char kModuleConflictBubbleShown[]; |
| 906 | 904 |
| 907 extern const char kDRMSalt[]; | 905 extern const char kDRMSalt[]; |
| 908 extern const char kEnableDRM[]; | 906 extern const char kEnableDRM[]; |
| 909 | 907 |
| 910 extern const char kWatchdogExtensionActive[]; | 908 extern const char kWatchdogExtensionActive[]; |
| 911 | 909 |
| 912 extern const char kProfilePreferenceHashes[]; | 910 extern const char kProfilePreferenceHashes[]; |
| 913 | 911 |
| 914 } // namespace prefs | 912 } // namespace prefs |
| 915 | 913 |
| 916 #endif // CHROME_COMMON_PREF_NAMES_H_ | 914 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |