| 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 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 | 844 |
| 845 extern const char kMediaGalleriesUniqueId[]; | 845 extern const char kMediaGalleriesUniqueId[]; |
| 846 extern const char kMediaGalleriesRememberedGalleries[]; | 846 extern const char kMediaGalleriesRememberedGalleries[]; |
| 847 | 847 |
| 848 #if defined(USE_ASH) | 848 #if defined(USE_ASH) |
| 849 extern const char kShelfAlignment[]; | 849 extern const char kShelfAlignment[]; |
| 850 extern const char kShelfAlignmentLocal[]; | 850 extern const char kShelfAlignmentLocal[]; |
| 851 extern const char kShelfAutoHideBehavior[]; | 851 extern const char kShelfAutoHideBehavior[]; |
| 852 extern const char kShelfAutoHideBehaviorLocal[]; | 852 extern const char kShelfAutoHideBehaviorLocal[]; |
| 853 extern const char kShelfChromeIconIndex[]; | 853 extern const char kShelfChromeIconIndex[]; |
| 854 extern const char kShelfPreferences[]; |
| 855 |
| 856 extern const char kLogoutDialogDurationMs[]; |
| 854 extern const char kPinnedLauncherApps[]; | 857 extern const char kPinnedLauncherApps[]; |
| 855 extern const char kShowLogoutButtonInTray[]; | 858 extern const char kShowLogoutButtonInTray[]; |
| 856 extern const char kShelfPreferences[]; | |
| 857 #endif | 859 #endif |
| 858 | 860 |
| 859 #if defined(USE_AURA) | 861 #if defined(USE_AURA) |
| 860 extern const char kFlingVelocityCap[]; | 862 extern const char kFlingVelocityCap[]; |
| 861 extern const char kLongPressTimeInSeconds[]; | 863 extern const char kLongPressTimeInSeconds[]; |
| 862 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; | 864 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; |
| 863 extern const char kMaxDistanceForTwoFingerTapInPixels[]; | 865 extern const char kMaxDistanceForTwoFingerTapInPixels[]; |
| 864 extern const char kMaxSecondsBetweenDoubleClick[]; | 866 extern const char kMaxSecondsBetweenDoubleClick[]; |
| 865 extern const char kMaxSeparationForGestureTouchesInPixels[]; | 867 extern const char kMaxSeparationForGestureTouchesInPixels[]; |
| 866 extern const char kMaxSwipeDeviationRatio[]; | 868 extern const char kMaxSwipeDeviationRatio[]; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 #if defined(OS_WIN) | 951 #if defined(OS_WIN) |
| 950 extern const char kOsPasswordBlank[]; | 952 extern const char kOsPasswordBlank[]; |
| 951 extern const char kOsPasswordLastChanged[]; | 953 extern const char kOsPasswordLastChanged[]; |
| 952 #endif | 954 #endif |
| 953 | 955 |
| 954 extern const char kQuickCheckEnabled[]; | 956 extern const char kQuickCheckEnabled[]; |
| 955 | 957 |
| 956 } // namespace prefs | 958 } // namespace prefs |
| 957 | 959 |
| 958 #endif // CHROME_COMMON_PREF_NAMES_H_ | 960 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |