| 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 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 extern const char kMediaGalleriesRememberedGalleries[]; | 826 extern const char kMediaGalleriesRememberedGalleries[]; |
| 827 | 827 |
| 828 #if defined(USE_ASH) | 828 #if defined(USE_ASH) |
| 829 extern const char kShelfAlignment[]; | 829 extern const char kShelfAlignment[]; |
| 830 extern const char kShelfAlignmentLocal[]; | 830 extern const char kShelfAlignmentLocal[]; |
| 831 extern const char kShelfAutoHideBehavior[]; | 831 extern const char kShelfAutoHideBehavior[]; |
| 832 extern const char kShelfAutoHideBehaviorLocal[]; | 832 extern const char kShelfAutoHideBehaviorLocal[]; |
| 833 extern const char kShelfChromeIconIndex[]; | 833 extern const char kShelfChromeIconIndex[]; |
| 834 extern const char kPinnedLauncherApps[]; | 834 extern const char kPinnedLauncherApps[]; |
| 835 extern const char kShowLogoutButtonInTray[]; | 835 extern const char kShowLogoutButtonInTray[]; |
| 836 extern const char kLogoutDialogDurationMs[]; |
| 836 extern const char kShelfPreferences[]; | 837 extern const char kShelfPreferences[]; |
| 837 | 838 |
| 838 extern const char kImmersiveModeRevealDelayMs[]; | 839 extern const char kImmersiveModeRevealDelayMs[]; |
| 839 extern const char kImmersiveModeRevealXThresholdPixels[]; | 840 extern const char kImmersiveModeRevealXThresholdPixels[]; |
| 840 #endif | 841 #endif |
| 841 | 842 |
| 842 #if defined(USE_AURA) | 843 #if defined(USE_AURA) |
| 843 extern const char kFlingVelocityCap[]; | 844 extern const char kFlingVelocityCap[]; |
| 844 extern const char kLongPressTimeInSeconds[]; | 845 extern const char kLongPressTimeInSeconds[]; |
| 845 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; | 846 extern const char kMaxDistanceBetweenTapsForDoubleTap[]; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 919 | 920 |
| 920 extern const char kWatchdogExtensionActive[]; | 921 extern const char kWatchdogExtensionActive[]; |
| 921 | 922 |
| 922 extern const char kProfilePreferenceHashes[]; | 923 extern const char kProfilePreferenceHashes[]; |
| 923 | 924 |
| 924 extern const char kNetworkTimeMapping[]; | 925 extern const char kNetworkTimeMapping[]; |
| 925 | 926 |
| 926 } // namespace prefs | 927 } // namespace prefs |
| 927 | 928 |
| 928 #endif // CHROME_COMMON_PREF_NAMES_H_ | 929 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |