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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
696 extern const char kSystemTimezoneAutomaticDetectionPolicy[]; | 696 extern const char kSystemTimezoneAutomaticDetectionPolicy[]; |
697 #endif // defined(OS_CHROMEOS) | 697 #endif // defined(OS_CHROMEOS) |
698 | 698 |
699 #if !defined(OS_ANDROID) | 699 #if !defined(OS_ANDROID) |
700 extern const char kAttemptedToEnableAutoupdate[]; | 700 extern const char kAttemptedToEnableAutoupdate[]; |
701 | 701 |
702 extern const char kMediaGalleriesUniqueId[]; | 702 extern const char kMediaGalleriesUniqueId[]; |
703 extern const char kMediaGalleriesRememberedGalleries[]; | 703 extern const char kMediaGalleriesRememberedGalleries[]; |
704 #endif // !defined(OS_ANDROID) | 704 #endif // !defined(OS_ANDROID) |
705 | 705 |
706 #if defined(USE_ASH) | 706 #if defined(USE_AURA) |
James Cook
2016/04/06 04:29:52
Possibly silly drive-by question: Why does all thi
msw
2016/04/07 20:34:57
afaik, we want to be able to build mash w/o USE_AS
| |
707 extern const char kShelfAlignment[]; | 707 extern const char kShelfAlignment[]; |
708 extern const char kShelfAlignmentLocal[]; | 708 extern const char kShelfAlignmentLocal[]; |
709 extern const char kShelfAutoHideBehavior[]; | 709 extern const char kShelfAutoHideBehavior[]; |
710 extern const char kShelfAutoHideBehaviorLocal[]; | 710 extern const char kShelfAutoHideBehaviorLocal[]; |
711 extern const char kShelfChromeIconIndex[]; | 711 extern const char kShelfChromeIconIndex[]; |
712 extern const char kShelfPreferences[]; | 712 extern const char kShelfPreferences[]; |
713 | 713 |
714 extern const char kLogoutDialogDurationMs[]; | 714 extern const char kLogoutDialogDurationMs[]; |
715 extern const char kPinnedLauncherApps[]; | 715 extern const char kPinnedLauncherApps[]; |
716 extern const char kPolicyPinnedLauncherApps[]; | 716 extern const char kPolicyPinnedLauncherApps[]; |
717 extern const char kShowLogoutButtonInTray[]; | 717 extern const char kShowLogoutButtonInTray[]; |
718 #endif | |
719 | 718 |
720 #if defined(USE_AURA) | |
721 extern const char kMaxSeparationForGestureTouchesInPixels[]; | 719 extern const char kMaxSeparationForGestureTouchesInPixels[]; |
722 extern const char kSemiLongPressTimeInMs[]; | 720 extern const char kSemiLongPressTimeInMs[]; |
723 extern const char kTabScrubActivationDelayInMs[]; | 721 extern const char kTabScrubActivationDelayInMs[]; |
724 extern const char kFlingMaxCancelToDownTimeInMs[]; | 722 extern const char kFlingMaxCancelToDownTimeInMs[]; |
725 extern const char kFlingMaxTapGapTimeInMs[]; | 723 extern const char kFlingMaxTapGapTimeInMs[]; |
726 extern const char kOverscrollHorizontalThresholdComplete[]; | 724 extern const char kOverscrollHorizontalThresholdComplete[]; |
727 extern const char kOverscrollVerticalThresholdComplete[]; | 725 extern const char kOverscrollVerticalThresholdComplete[]; |
728 extern const char kOverscrollMinimumThresholdStart[]; | 726 extern const char kOverscrollMinimumThresholdStart[]; |
729 extern const char kOverscrollMinimumThresholdStartTouchpad[]; | 727 extern const char kOverscrollMinimumThresholdStartTouchpad[]; |
730 extern const char kOverscrollVerticalThresholdStart[]; | 728 extern const char kOverscrollVerticalThresholdStart[]; |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
806 #if defined(GOOGLE_CHROME_BUILD) | 804 #if defined(GOOGLE_CHROME_BUILD) |
807 extern const char kMediaRouterCloudServicesPrefSet[]; | 805 extern const char kMediaRouterCloudServicesPrefSet[]; |
808 extern const char kMediaRouterEnableCloudServices[]; | 806 extern const char kMediaRouterEnableCloudServices[]; |
809 #endif // defined(GOOGLE_CHROME_BUILD) | 807 #endif // defined(GOOGLE_CHROME_BUILD) |
810 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 808 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
811 #endif | 809 #endif |
812 | 810 |
813 } // namespace prefs | 811 } // namespace prefs |
814 | 812 |
815 #endif // CHROME_COMMON_PREF_NAMES_H_ | 813 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |