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 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
774 | 774 |
775 #if defined(USE_AURA) | 775 #if defined(USE_AURA) |
776 extern const char kShelfAlignment[]; | 776 extern const char kShelfAlignment[]; |
777 extern const char kShelfAlignmentLocal[]; | 777 extern const char kShelfAlignmentLocal[]; |
778 extern const char kShelfAutoHideBehavior[]; | 778 extern const char kShelfAutoHideBehavior[]; |
779 extern const char kShelfAutoHideBehaviorLocal[]; | 779 extern const char kShelfAutoHideBehaviorLocal[]; |
780 extern const char kPinnedLauncherApps[]; | 780 extern const char kPinnedLauncherApps[]; |
781 extern const char kShowLogoutButtonInTray[]; | 781 extern const char kShowLogoutButtonInTray[]; |
782 extern const char kShelfPreferences[]; | 782 extern const char kShelfPreferences[]; |
783 | 783 |
784 extern const char kWorkspaceCyclerShallowerThanSelectedYOffsets[]; | |
785 extern const char kWorkspaceCyclerDeeperThanSelectedYOffsets[]; | |
sadrul
2013/02/11 16:41:19
#if defined ash?
| |
786 extern const char kWorkspaceCyclerSelectedYOffset[]; | |
787 extern const char kWorkspaceCyclerSelectedScale[]; | |
788 extern const char kWorkspaceCyclerMinScale[]; | |
789 extern const char kWorkspaceCyclerMaxScale[]; | |
790 extern const char kWorkspaceCyclerMinBrightness[]; | |
791 extern const char kWorkspaceCyclerBackgroundOpacity[]; | |
792 extern const char kWorkspaceCyclerDistanceToInitiateCycling[]; | |
793 extern const char kWorkspaceCyclerScrollDistanceToCycleToNextWorkspace[]; | |
794 extern const char kWorkspaceCyclerCyclerStepAnimationDurationRatio[]; | |
795 extern const char kWorkspaceCyclerStartCyclerAnimationDuration[]; | |
796 extern const char kWorkspaceCyclerStopCyclerAnimationDuration[]; | |
797 | |
784 extern const char kFlingMaxCancelToDownTimeInMs[]; | 798 extern const char kFlingMaxCancelToDownTimeInMs[]; |
785 extern const char kFlingMaxTapGapTimeInMs[]; | 799 extern const char kFlingMaxTapGapTimeInMs[]; |
786 extern const char kFlingVelocityCap[]; | 800 extern const char kFlingVelocityCap[]; |
787 extern const char kLongPressTimeInSeconds[]; | 801 extern const char kLongPressTimeInSeconds[]; |
788 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; | 802 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; |
789 extern const char kMaxDistanceForTwoFingerTapInPixels[]; | 803 extern const char kMaxDistanceForTwoFingerTapInPixels[]; |
790 extern const char kMaxSecondsBetweenDoubleClick[]; | 804 extern const char kMaxSecondsBetweenDoubleClick[]; |
791 extern const char kMaxSeparationForGestureTouchesInPixels[]; | 805 extern const char kMaxSeparationForGestureTouchesInPixels[]; |
792 extern const char kMaxSwipeDeviationRatio[]; | 806 extern const char kMaxSwipeDeviationRatio[]; |
793 extern const char kMaxTouchDownDurationInSecondsForClick[]; | 807 extern const char kMaxTouchDownDurationInSecondsForClick[]; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
826 extern const char kRLZDisabled[]; | 840 extern const char kRLZDisabled[]; |
827 #endif | 841 #endif |
828 | 842 |
829 #if defined(ENABLE_APP_LIST) | 843 #if defined(ENABLE_APP_LIST) |
830 extern const char kAppListProfile[]; | 844 extern const char kAppListProfile[]; |
831 #endif | 845 #endif |
832 | 846 |
833 } // namespace prefs | 847 } // namespace prefs |
834 | 848 |
835 #endif // CHROME_COMMON_PREF_NAMES_H_ | 849 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |