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 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
893 extern const char kFlingCurveTouchscreenBeta[]; | 893 extern const char kFlingCurveTouchscreenBeta[]; |
894 extern const char kFlingCurveTouchscreenGamma[]; | 894 extern const char kFlingCurveTouchscreenGamma[]; |
895 extern const char kFlingMaxCancelToDownTimeInMs[]; | 895 extern const char kFlingMaxCancelToDownTimeInMs[]; |
896 extern const char kFlingMaxTapGapTimeInMs[]; | 896 extern const char kFlingMaxTapGapTimeInMs[]; |
897 extern const char kOverscrollHorizontalThresholdComplete[]; | 897 extern const char kOverscrollHorizontalThresholdComplete[]; |
898 extern const char kOverscrollVerticalThresholdComplete[]; | 898 extern const char kOverscrollVerticalThresholdComplete[]; |
899 extern const char kOverscrollMinimumThresholdStart[]; | 899 extern const char kOverscrollMinimumThresholdStart[]; |
900 extern const char kOverscrollVerticalThresholdStart[]; | 900 extern const char kOverscrollVerticalThresholdStart[]; |
901 extern const char kOverscrollHorizontalResistThreshold[]; | 901 extern const char kOverscrollHorizontalResistThreshold[]; |
902 extern const char kOverscrollVerticalResistThreshold[]; | 902 extern const char kOverscrollVerticalResistThreshold[]; |
| 903 extern const char kGestureConfigIsTrustworthy[]; |
903 #endif | 904 #endif |
904 | 905 |
905 extern const char kNetworkProfileWarningsLeft[]; | 906 extern const char kNetworkProfileWarningsLeft[]; |
906 extern const char kNetworkProfileLastWarningTime[]; | 907 extern const char kNetworkProfileLastWarningTime[]; |
907 | 908 |
908 extern const char kLastPolicyStatisticsUpdate[]; | 909 extern const char kLastPolicyStatisticsUpdate[]; |
909 | 910 |
910 #if defined(OS_CHROMEOS) | 911 #if defined(OS_CHROMEOS) |
911 extern const char kRLZBrand[]; | 912 extern const char kRLZBrand[]; |
912 extern const char kRLZDisabled[]; | 913 extern const char kRLZDisabled[]; |
913 #endif | 914 #endif |
914 | 915 |
915 extern const char kAppListProfile[]; | 916 extern const char kAppListProfile[]; |
916 extern const char kRestartWithAppList[]; | 917 extern const char kRestartWithAppList[]; |
917 | 918 |
918 extern const char kLastAppListLaunchPing[]; | 919 extern const char kLastAppListLaunchPing[]; |
919 extern const char kAppListLaunchCount[]; | 920 extern const char kAppListLaunchCount[]; |
920 extern const char kLastAppListAppLaunchPing[]; | 921 extern const char kLastAppListAppLaunchPing[]; |
921 extern const char kAppListAppLaunchCount[]; | 922 extern const char kAppListAppLaunchCount[]; |
922 | 923 |
923 extern const char kModuleConflictBubbleShown[]; | 924 extern const char kModuleConflictBubbleShown[]; |
924 | 925 |
925 extern const char kDRMSalt[]; | 926 extern const char kDRMSalt[]; |
926 extern const char kEnableDRM[]; | 927 extern const char kEnableDRM[]; |
927 | 928 |
928 } // namespace prefs | 929 } // namespace prefs |
929 | 930 |
930 #endif // CHROME_COMMON_PREF_NAMES_H_ | 931 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |