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 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
888 extern const char kFlingCurveTouchscreenGamma[]; | 888 extern const char kFlingCurveTouchscreenGamma[]; |
889 extern const char kFlingMaxCancelToDownTimeInMs[]; | 889 extern const char kFlingMaxCancelToDownTimeInMs[]; |
890 extern const char kFlingMaxTapGapTimeInMs[]; | 890 extern const char kFlingMaxTapGapTimeInMs[]; |
891 extern const char kOverscrollHorizontalThresholdComplete[]; | 891 extern const char kOverscrollHorizontalThresholdComplete[]; |
892 extern const char kOverscrollVerticalThresholdComplete[]; | 892 extern const char kOverscrollVerticalThresholdComplete[]; |
893 extern const char kOverscrollMinimumThresholdStart[]; | 893 extern const char kOverscrollMinimumThresholdStart[]; |
894 extern const char kOverscrollMinimumThresholdStartTouchpad[]; | 894 extern const char kOverscrollMinimumThresholdStartTouchpad[]; |
895 extern const char kOverscrollVerticalThresholdStart[]; | 895 extern const char kOverscrollVerticalThresholdStart[]; |
896 extern const char kOverscrollHorizontalResistThreshold[]; | 896 extern const char kOverscrollHorizontalResistThreshold[]; |
897 extern const char kOverscrollVerticalResistThreshold[]; | 897 extern const char kOverscrollVerticalResistThreshold[]; |
898 extern const char kGestureConfigIsTrustworthy[]; | |
899 #endif | 898 #endif |
900 | 899 |
901 extern const char kNetworkProfileWarningsLeft[]; | 900 extern const char kNetworkProfileWarningsLeft[]; |
902 extern const char kNetworkProfileLastWarningTime[]; | 901 extern const char kNetworkProfileLastWarningTime[]; |
903 | 902 |
904 #if defined(OS_CHROMEOS) | 903 #if defined(OS_CHROMEOS) |
905 extern const char kRLZBrand[]; | 904 extern const char kRLZBrand[]; |
906 extern const char kRLZDisabled[]; | 905 extern const char kRLZDisabled[]; |
907 #endif | 906 #endif |
908 | 907 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
945 #if defined(OS_WIN) | 944 #if defined(OS_WIN) |
946 extern const char kOsPasswordBlank[]; | 945 extern const char kOsPasswordBlank[]; |
947 extern const char kOsPasswordLastChanged[]; | 946 extern const char kOsPasswordLastChanged[]; |
948 #endif | 947 #endif |
949 | 948 |
950 extern const char kQuickCheckEnabled[]; | 949 extern const char kQuickCheckEnabled[]; |
951 | 950 |
952 } // namespace prefs | 951 } // namespace prefs |
953 | 952 |
954 #endif // CHROME_COMMON_PREF_NAMES_H_ | 953 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |