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 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
800 extern const char kFlingAccelerationCurveCoefficient2[]; | 800 extern const char kFlingAccelerationCurveCoefficient2[]; |
801 extern const char kFlingAccelerationCurveCoefficient3[]; | 801 extern const char kFlingAccelerationCurveCoefficient3[]; |
802 extern const char kOverscrollHorizontalThresholdComplete[]; | 802 extern const char kOverscrollHorizontalThresholdComplete[]; |
803 extern const char kOverscrollVerticalThresholdComplete[]; | 803 extern const char kOverscrollVerticalThresholdComplete[]; |
804 extern const char kOverscrollMinimumThresholdStart[]; | 804 extern const char kOverscrollMinimumThresholdStart[]; |
805 extern const char kOverscrollHorizontalResistThreshold[]; | 805 extern const char kOverscrollHorizontalResistThreshold[]; |
806 extern const char kOverscrollVerticalResistThreshold[]; | 806 extern const char kOverscrollVerticalResistThreshold[]; |
807 #endif | 807 #endif |
808 | 808 |
809 extern const char kInManagedMode[]; | 809 extern const char kInManagedMode[]; |
810 extern const char kManagedModeWhitelist[]; | |
811 extern const char kManagedModeBlacklist[]; | |
Bernhard Bauer
2013/01/07 12:34:19
Sorry, nope. These are per-profile preferences, so
Pam (message me for reviews)
2013/01/07 13:00:16
Why kInManagedMode is a global preference is left
Sergiu
2013/01/07 16:25:05
Got it, didn't see that there were separate sectio
| |
810 | 812 |
811 extern const char kNetworkProfileWarningsLeft[]; | 813 extern const char kNetworkProfileWarningsLeft[]; |
812 extern const char kNetworkProfileLastWarningTime[]; | 814 extern const char kNetworkProfileLastWarningTime[]; |
813 | 815 |
814 extern const char kLastPolicyStatisticsUpdate[]; | 816 extern const char kLastPolicyStatisticsUpdate[]; |
815 | 817 |
816 #if defined(OS_CHROMEOS) | 818 #if defined(OS_CHROMEOS) |
817 extern const char kRLZBrand[]; | 819 extern const char kRLZBrand[]; |
818 extern const char kRLZDisabled[]; | 820 extern const char kRLZDisabled[]; |
819 #endif | 821 #endif |
820 | 822 |
821 } // namespace prefs | 823 } // namespace prefs |
822 | 824 |
823 #endif // CHROME_COMMON_PREF_NAMES_H_ | 825 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |