| 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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 extern const char kMediaGalleriesUniqueId[]; | 720 extern const char kMediaGalleriesUniqueId[]; |
| 721 extern const char kMediaGalleriesRememberedGalleries[]; | 721 extern const char kMediaGalleriesRememberedGalleries[]; |
| 722 #endif // !defined(OS_ANDROID) | 722 #endif // !defined(OS_ANDROID) |
| 723 | 723 |
| 724 #if defined(USE_AURA) | 724 #if defined(USE_AURA) |
| 725 extern const char kShelfAlignment[]; | 725 extern const char kShelfAlignment[]; |
| 726 extern const char kShelfAlignmentLocal[]; | 726 extern const char kShelfAlignmentLocal[]; |
| 727 extern const char kShelfAutoHideBehavior[]; | 727 extern const char kShelfAutoHideBehavior[]; |
| 728 extern const char kShelfAutoHideBehaviorLocal[]; | 728 extern const char kShelfAutoHideBehaviorLocal[]; |
| 729 extern const char kShelfChromeIconIndex[]; | 729 extern const char kShelfChromeIconIndex[]; |
| 730 extern const char kShelfPins[]; |
| 730 extern const char kShelfPreferences[]; | 731 extern const char kShelfPreferences[]; |
| 731 | 732 |
| 732 extern const char kLogoutDialogDurationMs[]; | 733 extern const char kLogoutDialogDurationMs[]; |
| 733 extern const char kPinnedLauncherApps[]; | 734 extern const char kPinnedLauncherApps[]; |
| 734 extern const char kPolicyPinnedLauncherApps[]; | 735 extern const char kPolicyPinnedLauncherApps[]; |
| 735 extern const char kShowLogoutButtonInTray[]; | 736 extern const char kShowLogoutButtonInTray[]; |
| 736 | 737 |
| 737 extern const char kMaxSeparationForGestureTouchesInPixels[]; | 738 extern const char kMaxSeparationForGestureTouchesInPixels[]; |
| 738 extern const char kSemiLongPressTimeInMs[]; | 739 extern const char kSemiLongPressTimeInMs[]; |
| 739 extern const char kTabScrubActivationDelayInMs[]; | 740 extern const char kTabScrubActivationDelayInMs[]; |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 #endif | 834 #endif |
| 834 | 835 |
| 835 extern const char kOriginTrialPublicKey[]; | 836 extern const char kOriginTrialPublicKey[]; |
| 836 extern const char kOriginTrialDisabledFeatures[]; | 837 extern const char kOriginTrialDisabledFeatures[]; |
| 837 | 838 |
| 838 extern const char kComponentUpdatesEnabled[]; | 839 extern const char kComponentUpdatesEnabled[]; |
| 839 | 840 |
| 840 } // namespace prefs | 841 } // namespace prefs |
| 841 | 842 |
| 842 #endif // CHROME_COMMON_PREF_NAMES_H_ | 843 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |