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 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
839 extern const char kMediaGalleriesRememberedGalleries[]; | 839 extern const char kMediaGalleriesRememberedGalleries[]; |
840 | 840 |
841 #if defined(USE_ASH) | 841 #if defined(USE_ASH) |
842 extern const char kShelfAlignment[]; | 842 extern const char kShelfAlignment[]; |
843 extern const char kShelfAlignmentLocal[]; | 843 extern const char kShelfAlignmentLocal[]; |
844 extern const char kShelfAutoHideBehavior[]; | 844 extern const char kShelfAutoHideBehavior[]; |
845 extern const char kShelfAutoHideBehaviorLocal[]; | 845 extern const char kShelfAutoHideBehaviorLocal[]; |
846 extern const char kShelfChromeIconIndex[]; | 846 extern const char kShelfChromeIconIndex[]; |
847 extern const char kPinnedLauncherApps[]; | 847 extern const char kPinnedLauncherApps[]; |
848 extern const char kShowLogoutButtonInTray[]; | 848 extern const char kShowLogoutButtonInTray[]; |
| 849 extern const char kLogoutDialogDurationMs[]; |
849 extern const char kShelfPreferences[]; | 850 extern const char kShelfPreferences[]; |
850 #endif | 851 #endif |
851 | 852 |
852 #if defined(USE_AURA) | 853 #if defined(USE_AURA) |
853 extern const char kFlingVelocityCap[]; | 854 extern const char kFlingVelocityCap[]; |
854 extern const char kLongPressTimeInSeconds[]; | 855 extern const char kLongPressTimeInSeconds[]; |
855 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; | 856 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; |
856 extern const char kMaxDistanceForTwoFingerTapInPixels[]; | 857 extern const char kMaxDistanceForTwoFingerTapInPixels[]; |
857 extern const char kMaxSecondsBetweenDoubleClick[]; | 858 extern const char kMaxSecondsBetweenDoubleClick[]; |
858 extern const char kMaxSeparationForGestureTouchesInPixels[]; | 859 extern const char kMaxSeparationForGestureTouchesInPixels[]; |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
938 #endif | 939 #endif |
939 | 940 |
940 #if defined(OS_WIN) | 941 #if defined(OS_WIN) |
941 extern const char kOsPasswordBlank[]; | 942 extern const char kOsPasswordBlank[]; |
942 extern const char kOsPasswordLastChanged[]; | 943 extern const char kOsPasswordLastChanged[]; |
943 #endif | 944 #endif |
944 | 945 |
945 } // namespace prefs | 946 } // namespace prefs |
946 | 947 |
947 #endif // CHROME_COMMON_PREF_NAMES_H_ | 948 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |