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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 | 753 |
754 extern const char kLogoutDialogDurationMs[]; | 754 extern const char kLogoutDialogDurationMs[]; |
755 extern const char kPinnedLauncherApps[]; | 755 extern const char kPinnedLauncherApps[]; |
756 extern const char kShowLogoutButtonInTray[]; | 756 extern const char kShowLogoutButtonInTray[]; |
757 #endif | 757 #endif |
758 | 758 |
759 #if defined(USE_AURA) | 759 #if defined(USE_AURA) |
760 extern const char kMaxSeparationForGestureTouchesInPixels[]; | 760 extern const char kMaxSeparationForGestureTouchesInPixels[]; |
761 extern const char kSemiLongPressTimeInSeconds[]; | 761 extern const char kSemiLongPressTimeInSeconds[]; |
762 extern const char kTabScrubActivationDelayInMS[]; | 762 extern const char kTabScrubActivationDelayInMS[]; |
763 extern const char kFlingAccelerationCurveCoefficient0[]; | |
764 extern const char kFlingAccelerationCurveCoefficient1[]; | |
765 extern const char kFlingAccelerationCurveCoefficient2[]; | |
766 extern const char kFlingAccelerationCurveCoefficient3[]; | |
767 extern const char kFlingCurveTouchpadAlpha[]; | |
768 extern const char kFlingCurveTouchpadBeta[]; | |
769 extern const char kFlingCurveTouchpadGamma[]; | |
770 extern const char kFlingCurveTouchscreenAlpha[]; | |
771 extern const char kFlingCurveTouchscreenBeta[]; | |
772 extern const char kFlingCurveTouchscreenGamma[]; | |
773 extern const char kFlingMaxCancelToDownTimeInMs[]; | 763 extern const char kFlingMaxCancelToDownTimeInMs[]; |
774 extern const char kFlingMaxTapGapTimeInMs[]; | 764 extern const char kFlingMaxTapGapTimeInMs[]; |
775 extern const char kOverscrollHorizontalThresholdComplete[]; | 765 extern const char kOverscrollHorizontalThresholdComplete[]; |
776 extern const char kOverscrollVerticalThresholdComplete[]; | 766 extern const char kOverscrollVerticalThresholdComplete[]; |
777 extern const char kOverscrollMinimumThresholdStart[]; | 767 extern const char kOverscrollMinimumThresholdStart[]; |
778 extern const char kOverscrollMinimumThresholdStartTouchpad[]; | 768 extern const char kOverscrollMinimumThresholdStartTouchpad[]; |
779 extern const char kOverscrollVerticalThresholdStart[]; | 769 extern const char kOverscrollVerticalThresholdStart[]; |
780 extern const char kOverscrollHorizontalResistThreshold[]; | 770 extern const char kOverscrollHorizontalResistThreshold[]; |
781 extern const char kOverscrollVerticalResistThreshold[]; | 771 extern const char kOverscrollVerticalResistThreshold[]; |
782 #endif | 772 #endif |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
821 extern const char kPartnerBookmarkMappings[]; | 811 extern const char kPartnerBookmarkMappings[]; |
822 #endif | 812 #endif |
823 | 813 |
824 extern const char kQuickCheckEnabled[]; | 814 extern const char kQuickCheckEnabled[]; |
825 extern const char kBrowserGuestModeEnabled[]; | 815 extern const char kBrowserGuestModeEnabled[]; |
826 extern const char kBrowserAddPersonEnabled[]; | 816 extern const char kBrowserAddPersonEnabled[]; |
827 | 817 |
828 } // namespace prefs | 818 } // namespace prefs |
829 | 819 |
830 #endif // CHROME_COMMON_PREF_NAMES_H_ | 820 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |