| 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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 | 766 |
| 767 #if defined(USE_AURA) | 767 #if defined(USE_AURA) |
| 768 extern const char kShelfAlignment[]; | 768 extern const char kShelfAlignment[]; |
| 769 extern const char kShelfAlignmentLocal[]; | 769 extern const char kShelfAlignmentLocal[]; |
| 770 extern const char kShelfAutoHideBehavior[]; | 770 extern const char kShelfAutoHideBehavior[]; |
| 771 extern const char kShelfAutoHideBehaviorLocal[]; | 771 extern const char kShelfAutoHideBehaviorLocal[]; |
| 772 extern const char kPinnedLauncherApps[]; | 772 extern const char kPinnedLauncherApps[]; |
| 773 extern const char kShowLogoutButtonInTray[]; | 773 extern const char kShowLogoutButtonInTray[]; |
| 774 extern const char kShelfPreferences[]; | 774 extern const char kShelfPreferences[]; |
| 775 | 775 |
| 776 extern const char kFlingMaxCancelToDownTimeInMs[]; |
| 777 extern const char kFlingMaxTapGapTimeInMs[]; |
| 776 extern const char kFlingVelocityCap[]; | 778 extern const char kFlingVelocityCap[]; |
| 777 extern const char kLongPressTimeInSeconds[]; | 779 extern const char kLongPressTimeInSeconds[]; |
| 778 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; | 780 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; |
| 779 extern const char kMaxDistanceForTwoFingerTapInPixels[]; | 781 extern const char kMaxDistanceForTwoFingerTapInPixels[]; |
| 780 extern const char kMaxSecondsBetweenDoubleClick[]; | 782 extern const char kMaxSecondsBetweenDoubleClick[]; |
| 781 extern const char kMaxSeparationForGestureTouchesInPixels[]; | 783 extern const char kMaxSeparationForGestureTouchesInPixels[]; |
| 782 extern const char kMaxSwipeDeviationRatio[]; | 784 extern const char kMaxSwipeDeviationRatio[]; |
| 783 extern const char kMaxTouchDownDurationInSecondsForClick[]; | 785 extern const char kMaxTouchDownDurationInSecondsForClick[]; |
| 784 extern const char kMaxTouchMoveInPixelsForClick[]; | 786 extern const char kMaxTouchMoveInPixelsForClick[]; |
| 785 extern const char kMinDistanceForPinchScrollInPixels[]; | 787 extern const char kMinDistanceForPinchScrollInPixels[]; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 812 extern const char kLastPolicyStatisticsUpdate[]; | 814 extern const char kLastPolicyStatisticsUpdate[]; |
| 813 | 815 |
| 814 #if defined(OS_CHROMEOS) | 816 #if defined(OS_CHROMEOS) |
| 815 extern const char kRLZBrand[]; | 817 extern const char kRLZBrand[]; |
| 816 extern const char kRLZDisabled[]; | 818 extern const char kRLZDisabled[]; |
| 817 #endif | 819 #endif |
| 818 | 820 |
| 819 } // namespace prefs | 821 } // namespace prefs |
| 820 | 822 |
| 821 #endif // CHROME_COMMON_PREF_NAMES_H_ | 823 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |