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

Unified Diff: chrome/common/pref_names.cc

Issue 9460001: Adding persistance for gesture recognition parms. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/pref_names.cc
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc
index 11f90f4c2ad520ff14588640e06ec3d81cb9e95a..6f4930ffc0a5f70f4c55f87c77e39728c15c5791 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -1761,4 +1761,17 @@ const char kRestoreSessionStateDialogShown[] =
// Boolean that is true if Web Intents is enabled.
const char kWebIntentsEnabled[] = "webintents.enabled";
+#if defined(USE_AURA)
rjkroege 2012/02/24 15:21:34 the ordering convention of this file does not seem
+const char kMaximumTouchDownDurationInSecondsForClick[] =
+ "gesture.maximum_touch_down_duration_in_seconds_for_click";
+const char kMinimumTouchDownDurationInSecondsForClick[] =
+ "gesture.minimum_touch_down_duration_in_seconds_for_click";
+const char kMaximumSecondsBetweenDoubleClick[] =
+ "gesture.maximum_seconds_between_double_click";
+const char kMaximumTouchMoveInPixelsForClick[] =
+ "gesture.maximum_touch_move_in_pixels_for_click";
+const char kMinFlickSpeedSquared[] =
+ "gesture.min_flick_speed_squared";
+#endif
+
} // namespace prefs

Powered by Google App Engine
This is Rietveld 408576698