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 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 extern const char kMediaGalleriesUniqueId[]; | 757 extern const char kMediaGalleriesUniqueId[]; |
758 extern const char kMediaGalleriesRememberedGalleries[]; | 758 extern const char kMediaGalleriesRememberedGalleries[]; |
759 | 759 |
760 #if defined(USE_AURA) | 760 #if defined(USE_AURA) |
761 extern const char kShelfAlignment[]; | 761 extern const char kShelfAlignment[]; |
762 extern const char kShelfAlignmentLocal[]; | 762 extern const char kShelfAlignmentLocal[]; |
763 extern const char kShelfAutoHideBehavior[]; | 763 extern const char kShelfAutoHideBehavior[]; |
764 extern const char kShelfAutoHideBehaviorLocal[]; | 764 extern const char kShelfAutoHideBehaviorLocal[]; |
765 extern const char kPinnedLauncherApps[]; | 765 extern const char kPinnedLauncherApps[]; |
766 extern const char kShowLogoutButtonInTray[]; | 766 extern const char kShowLogoutButtonInTray[]; |
| 767 extern const char kShelfPreferences[]; |
767 | 768 |
768 extern const char kFlingVelocityCap[]; | 769 extern const char kFlingVelocityCap[]; |
769 extern const char kLongPressTimeInSeconds[]; | 770 extern const char kLongPressTimeInSeconds[]; |
770 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; | 771 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; |
771 extern const char kMaxDistanceForTwoFingerTapInPixels[]; | 772 extern const char kMaxDistanceForTwoFingerTapInPixels[]; |
772 extern const char kMaxSecondsBetweenDoubleClick[]; | 773 extern const char kMaxSecondsBetweenDoubleClick[]; |
773 extern const char kMaxSeparationForGestureTouchesInPixels[]; | 774 extern const char kMaxSeparationForGestureTouchesInPixels[]; |
774 extern const char kMaxSwipeDeviationRatio[]; | 775 extern const char kMaxSwipeDeviationRatio[]; |
775 extern const char kMaxTouchDownDurationInSecondsForClick[]; | 776 extern const char kMaxTouchDownDurationInSecondsForClick[]; |
776 extern const char kMaxTouchMoveInPixelsForClick[]; | 777 extern const char kMaxTouchMoveInPixelsForClick[]; |
(...skipping 26 matching lines...) Expand all Loading... |
803 | 804 |
804 extern const char kLastPolicyStatisticsUpdate[]; | 805 extern const char kLastPolicyStatisticsUpdate[]; |
805 | 806 |
806 #if defined(OS_CHROMEOS) | 807 #if defined(OS_CHROMEOS) |
807 extern const char kRLZBrand[]; | 808 extern const char kRLZBrand[]; |
808 #endif | 809 #endif |
809 | 810 |
810 } // namespace prefs | 811 } // namespace prefs |
811 | 812 |
812 #endif // CHROME_COMMON_PREF_NAMES_H_ | 813 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |