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 extern const char kDisableCloudPolicyOnSignin[]; | 774 extern const char kDisableCloudPolicyOnSignin[]; |
775 | 775 |
776 extern const char kFactoryResetRequested[]; | 776 extern const char kFactoryResetRequested[]; |
777 | 777 |
778 extern const char kRecoveryComponentVersion[]; | 778 extern const char kRecoveryComponentVersion[]; |
779 extern const char kComponentUpdaterState[]; | 779 extern const char kComponentUpdaterState[]; |
780 | 780 |
781 extern const char kMediaGalleriesUniqueId[]; | 781 extern const char kMediaGalleriesUniqueId[]; |
782 extern const char kMediaGalleriesRememberedGalleries[]; | 782 extern const char kMediaGalleriesRememberedGalleries[]; |
783 | 783 |
784 #if defined(USE_AURA) | 784 #if defined(USE_ASH) |
785 extern const char kShelfAlignment[]; | 785 extern const char kShelfAlignment[]; |
786 extern const char kShelfAlignmentLocal[]; | 786 extern const char kShelfAlignmentLocal[]; |
787 extern const char kShelfAutoHideBehavior[]; | 787 extern const char kShelfAutoHideBehavior[]; |
788 extern const char kShelfAutoHideBehaviorLocal[]; | 788 extern const char kShelfAutoHideBehaviorLocal[]; |
789 extern const char kPinnedLauncherApps[]; | 789 extern const char kPinnedLauncherApps[]; |
790 extern const char kShowLogoutButtonInTray[]; | 790 extern const char kShowLogoutButtonInTray[]; |
791 extern const char kShelfPreferences[]; | 791 extern const char kShelfPreferences[]; |
792 | 792 |
| 793 extern const char kWorkspaceCyclerShallowerThanSelectedYOffsets[]; |
| 794 extern const char kWorkspaceCyclerDeeperThanSelectedYOffsets[]; |
| 795 extern const char kWorkspaceCyclerSelectedYOffset[]; |
| 796 extern const char kWorkspaceCyclerSelectedScale[]; |
| 797 extern const char kWorkspaceCyclerMinScale[]; |
| 798 extern const char kWorkspaceCyclerMaxScale[]; |
| 799 extern const char kWorkspaceCyclerMinBrightness[]; |
| 800 extern const char kWorkspaceCyclerBackgroundOpacity[]; |
| 801 extern const char kWorkspaceCyclerDistanceToInitiateCycling[]; |
| 802 extern const char kWorkspaceCyclerScrollDistanceToCycleToNextWorkspace[]; |
| 803 extern const char kWorkspaceCyclerCyclerStepAnimationDurationRatio[]; |
| 804 extern const char kWorkspaceCyclerStartCyclerAnimationDuration[]; |
| 805 extern const char kWorkspaceCyclerStopCyclerAnimationDuration[]; |
| 806 #endif |
| 807 |
| 808 #if defined(USE_AURA) |
793 extern const char kFlingVelocityCap[]; | 809 extern const char kFlingVelocityCap[]; |
794 extern const char kLongPressTimeInSeconds[]; | 810 extern const char kLongPressTimeInSeconds[]; |
795 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; | 811 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; |
796 extern const char kMaxDistanceForTwoFingerTapInPixels[]; | 812 extern const char kMaxDistanceForTwoFingerTapInPixels[]; |
797 extern const char kMaxSecondsBetweenDoubleClick[]; | 813 extern const char kMaxSecondsBetweenDoubleClick[]; |
798 extern const char kMaxSeparationForGestureTouchesInPixels[]; | 814 extern const char kMaxSeparationForGestureTouchesInPixels[]; |
799 extern const char kMaxSwipeDeviationRatio[]; | 815 extern const char kMaxSwipeDeviationRatio[]; |
800 extern const char kMaxTouchDownDurationInSecondsForClick[]; | 816 extern const char kMaxTouchDownDurationInSecondsForClick[]; |
801 extern const char kMaxTouchMoveInPixelsForClick[]; | 817 extern const char kMaxTouchMoveInPixelsForClick[]; |
802 extern const char kMinDistanceForPinchScrollInPixels[]; | 818 extern const char kMinDistanceForPinchScrollInPixels[]; |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 extern const char kRLZDisabled[]; | 857 extern const char kRLZDisabled[]; |
842 #endif | 858 #endif |
843 | 859 |
844 #if defined(ENABLE_APP_LIST) | 860 #if defined(ENABLE_APP_LIST) |
845 extern const char kAppListProfile[]; | 861 extern const char kAppListProfile[]; |
846 #endif | 862 #endif |
847 | 863 |
848 } // namespace prefs | 864 } // namespace prefs |
849 | 865 |
850 #endif // CHROME_COMMON_PREF_NAMES_H_ | 866 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |