| 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 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 extern const char kShelfAutoHideBehaviorLocal[]; | 783 extern const char kShelfAutoHideBehaviorLocal[]; |
| 784 extern const char kShelfChromeIconIndex[]; | 784 extern const char kShelfChromeIconIndex[]; |
| 785 extern const char kShelfPreferences[]; | 785 extern const char kShelfPreferences[]; |
| 786 | 786 |
| 787 extern const char kLogoutDialogDurationMs[]; | 787 extern const char kLogoutDialogDurationMs[]; |
| 788 extern const char kPinnedLauncherApps[]; | 788 extern const char kPinnedLauncherApps[]; |
| 789 extern const char kShowLogoutButtonInTray[]; | 789 extern const char kShowLogoutButtonInTray[]; |
| 790 #endif | 790 #endif |
| 791 | 791 |
| 792 #if defined(USE_AURA) | 792 #if defined(USE_AURA) |
| 793 extern const char kFlingVelocityCap[]; | |
| 794 extern const char kLongPressTimeInSeconds[]; | |
| 795 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; | |
| 796 extern const char kMaxDistanceForTwoFingerTapInPixels[]; | |
| 797 extern const char kMaxSecondsBetweenDoubleClick[]; | |
| 798 extern const char kMaxSeparationForGestureTouchesInPixels[]; | 793 extern const char kMaxSeparationForGestureTouchesInPixels[]; |
| 799 extern const char kMaxSwipeDeviationRatio[]; | |
| 800 extern const char kMaxTouchDownDurationInSecondsForClick[]; | |
| 801 extern const char kMaxTouchMoveInPixelsForClick[]; | |
| 802 extern const char kMinDistanceForPinchScrollInPixels[]; | |
| 803 extern const char kMinFlickSpeedSquared[]; | |
| 804 extern const char kMinPinchUpdateDistanceInPixels[]; | |
| 805 extern const char kMinRailBreakVelocity[]; | |
| 806 extern const char kMinScrollDeltaSquared[]; | |
| 807 extern const char kMinSwipeSpeed[]; | |
| 808 extern const char kMinTouchDownDurationInSecondsForClick[]; | |
| 809 extern const char kPointsBufferedForVelocity[]; | |
| 810 extern const char kRailBreakProportion[]; | |
| 811 extern const char kRailStartProportion[]; | |
| 812 extern const char kScrollPredictionSeconds[]; | |
| 813 extern const char kSemiLongPressTimeInSeconds[]; | 794 extern const char kSemiLongPressTimeInSeconds[]; |
| 814 extern const char kShowPressDelayInMS[]; | |
| 815 extern const char kTabScrubActivationDelayInMS[]; | 795 extern const char kTabScrubActivationDelayInMS[]; |
| 816 extern const char kFlingAccelerationCurveCoefficient0[]; | 796 extern const char kFlingAccelerationCurveCoefficient0[]; |
| 817 extern const char kFlingAccelerationCurveCoefficient1[]; | 797 extern const char kFlingAccelerationCurveCoefficient1[]; |
| 818 extern const char kFlingAccelerationCurveCoefficient2[]; | 798 extern const char kFlingAccelerationCurveCoefficient2[]; |
| 819 extern const char kFlingAccelerationCurveCoefficient3[]; | 799 extern const char kFlingAccelerationCurveCoefficient3[]; |
| 820 extern const char kFlingCurveTouchpadAlpha[]; | 800 extern const char kFlingCurveTouchpadAlpha[]; |
| 821 extern const char kFlingCurveTouchpadBeta[]; | 801 extern const char kFlingCurveTouchpadBeta[]; |
| 822 extern const char kFlingCurveTouchpadGamma[]; | 802 extern const char kFlingCurveTouchpadGamma[]; |
| 823 extern const char kFlingCurveTouchscreenAlpha[]; | 803 extern const char kFlingCurveTouchscreenAlpha[]; |
| 824 extern const char kFlingCurveTouchscreenBeta[]; | 804 extern const char kFlingCurveTouchscreenBeta[]; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 | 855 |
| 876 #if defined(OS_ANDROID) | 856 #if defined(OS_ANDROID) |
| 877 extern const char kPartnerBookmarkMappings[]; | 857 extern const char kPartnerBookmarkMappings[]; |
| 878 #endif | 858 #endif |
| 879 | 859 |
| 880 extern const char kQuickCheckEnabled[]; | 860 extern const char kQuickCheckEnabled[]; |
| 881 | 861 |
| 882 } // namespace prefs | 862 } // namespace prefs |
| 883 | 863 |
| 884 #endif // CHROME_COMMON_PREF_NAMES_H_ | 864 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |