Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: chrome/common/pref_names.cc

Issue 10037012: Three Finger Swipe (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove pinch/scroll start/end calls Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/pref_names.h ('k') | ui/aura/gestures/gesture_recognizer_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1796 matching lines...) Expand 10 before | Expand all | Expand 10 after
1807 const char kUseDefaultPinnedApps[] = "use_default_pinned_apps"; 1807 const char kUseDefaultPinnedApps[] = "use_default_pinned_apps";
1808 const char kPinnedLauncherApps[] = 1808 const char kPinnedLauncherApps[] =
1809 "pinned_launcher_apps"; 1809 "pinned_launcher_apps";
1810 1810
1811 const char kLongPressTimeInSeconds[] = 1811 const char kLongPressTimeInSeconds[] =
1812 "gesture.long_press_time_in_seconds"; 1812 "gesture.long_press_time_in_seconds";
1813 const char kMaxSecondsBetweenDoubleClick[] = 1813 const char kMaxSecondsBetweenDoubleClick[] =
1814 "gesture.max_seconds_between_double_click"; 1814 "gesture.max_seconds_between_double_click";
1815 const char kMaxSeparationForGestureTouchesInPixels[] = 1815 const char kMaxSeparationForGestureTouchesInPixels[] =
1816 "gesture.max_separation_for_gesture_touches_in_pixels"; 1816 "gesture.max_separation_for_gesture_touches_in_pixels";
1817 const char kMaxSwipeDeviationRatio[] =
1818 "gesture.max_swipe_deviation_ratio";
1817 const char kMaxTouchDownDurationInSecondsForClick[] = 1819 const char kMaxTouchDownDurationInSecondsForClick[] =
1818 "gesture.max_touch_down_duration_in_seconds_for_click"; 1820 "gesture.max_touch_down_duration_in_seconds_for_click";
1819 const char kMaxTouchMoveInPixelsForClick[] = 1821 const char kMaxTouchMoveInPixelsForClick[] =
1820 "gesture.max_touch_move_in_pixels_for_click"; 1822 "gesture.max_touch_move_in_pixels_for_click";
1821 const char kMinDistanceForPinchScrollInPixels[] = 1823 const char kMinDistanceForPinchScrollInPixels[] =
1822 "gesture.min_distance_for_pinch_scroll_in_pixels"; 1824 "gesture.min_distance_for_pinch_scroll_in_pixels";
1823 const char kMinFlickSpeedSquared[] = 1825 const char kMinFlickSpeedSquared[] =
1824 "gesture.min_flick_speed_squared"; 1826 "gesture.min_flick_speed_squared";
1825 const char kMinPinchUpdateDistanceInPixels[] = 1827 const char kMinPinchUpdateDistanceInPixels[] =
1826 "gesture.min_pinch_update_distance_in_pixels"; 1828 "gesture.min_pinch_update_distance_in_pixels";
1827 const char kMinRailBreakVelocity[] = 1829 const char kMinRailBreakVelocity[] =
1828 "gesture.min_rail_break_velocity"; 1830 "gesture.min_rail_break_velocity";
1829 const char kMinScrollDeltaSquared[] = 1831 const char kMinScrollDeltaSquared[] =
1830 "gesture.min_scroll_delta_squared"; 1832 "gesture.min_scroll_delta_squared";
1833 const char kMinSwipeSpeed[] =
1834 "gesture.min_swipe_speed";
1831 const char kMinTouchDownDurationInSecondsForClick[] = 1835 const char kMinTouchDownDurationInSecondsForClick[] =
1832 "gesture.min_touch_down_duration_in_seconds_for_click"; 1836 "gesture.min_touch_down_duration_in_seconds_for_click";
1833 const char kPointsBufferedForVelocity[] = 1837 const char kPointsBufferedForVelocity[] =
1834 "gesture.points_buffered_for_velocity"; 1838 "gesture.points_buffered_for_velocity";
1835 const char kRailBreakProportion[] = 1839 const char kRailBreakProportion[] =
1836 "gesture.rail_break_proportion"; 1840 "gesture.rail_break_proportion";
1837 const char kRailStartProportion[] = 1841 const char kRailStartProportion[] =
1838 "gesture.rail_start_proportion"; 1842 "gesture.rail_start_proportion";
1839 #endif 1843 #endif
1840 1844
1841 // Indicates whether the browser is in managed mode. 1845 // Indicates whether the browser is in managed mode.
1842 const char kInManagedMode[] = "managed_mode"; 1846 const char kInManagedMode[] = "managed_mode";
1843 1847
1844 } // namespace prefs 1848 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | ui/aura/gestures/gesture_recognizer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698