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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1948 const char kMaxSecondsBetweenDoubleClick[] = | 1948 const char kMaxSecondsBetweenDoubleClick[] = |
1949 "gesture.max_seconds_between_double_click"; | 1949 "gesture.max_seconds_between_double_click"; |
1950 const char kMaxSeparationForGestureTouchesInPixels[] = | 1950 const char kMaxSeparationForGestureTouchesInPixels[] = |
1951 "gesture.max_separation_for_gesture_touches_in_pixels"; | 1951 "gesture.max_separation_for_gesture_touches_in_pixels"; |
1952 const char kMaxSwipeDeviationRatio[] = | 1952 const char kMaxSwipeDeviationRatio[] = |
1953 "gesture.max_swipe_deviation_ratio"; | 1953 "gesture.max_swipe_deviation_ratio"; |
1954 const char kMaxTouchDownDurationInSecondsForClick[] = | 1954 const char kMaxTouchDownDurationInSecondsForClick[] = |
1955 "gesture.max_touch_down_duration_in_seconds_for_click"; | 1955 "gesture.max_touch_down_duration_in_seconds_for_click"; |
1956 const char kMaxTouchMoveInPixelsForClick[] = | 1956 const char kMaxTouchMoveInPixelsForClick[] = |
1957 "gesture.max_touch_move_in_pixels_for_click"; | 1957 "gesture.max_touch_move_in_pixels_for_click"; |
| 1958 const char kMaxDistanceBetweenTapsForDoubleTap[] = |
| 1959 "gesture.max_distance_between_taps_for_double_tap"; |
1958 const char kMinDistanceForPinchScrollInPixels[] = | 1960 const char kMinDistanceForPinchScrollInPixels[] = |
1959 "gesture.min_distance_for_pinch_scroll_in_pixels"; | 1961 "gesture.min_distance_for_pinch_scroll_in_pixels"; |
1960 const char kMinFlickSpeedSquared[] = | 1962 const char kMinFlickSpeedSquared[] = |
1961 "gesture.min_flick_speed_squared"; | 1963 "gesture.min_flick_speed_squared"; |
1962 const char kMinPinchUpdateDistanceInPixels[] = | 1964 const char kMinPinchUpdateDistanceInPixels[] = |
1963 "gesture.min_pinch_update_distance_in_pixels"; | 1965 "gesture.min_pinch_update_distance_in_pixels"; |
1964 const char kMinRailBreakVelocity[] = | 1966 const char kMinRailBreakVelocity[] = |
1965 "gesture.min_rail_break_velocity"; | 1967 "gesture.min_rail_break_velocity"; |
1966 const char kMinScrollDeltaSquared[] = | 1968 const char kMinScrollDeltaSquared[] = |
1967 "gesture.min_scroll_delta_squared"; | 1969 "gesture.min_scroll_delta_squared"; |
(...skipping 18 matching lines...) Expand all Loading... |
1986 | 1988 |
1987 // Counts how many more times the 'profile on a network share' warning should be | 1989 // Counts how many more times the 'profile on a network share' warning should be |
1988 // shown to the user before the next silence period. | 1990 // shown to the user before the next silence period. |
1989 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 1991 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
1990 // Tracks the time of the last shown warning. Used to reset | 1992 // Tracks the time of the last shown warning. Used to reset |
1991 // |network_profile.warnings_left| after a silence period. | 1993 // |network_profile.warnings_left| after a silence period. |
1992 const char kNetworkProfileLastWarningTime[] = | 1994 const char kNetworkProfileLastWarningTime[] = |
1993 "network_profile.last_warning_time"; | 1995 "network_profile.last_warning_time"; |
1994 | 1996 |
1995 } // namespace prefs | 1997 } // namespace prefs |
OLD | NEW |