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