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

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: Updated as per rjkroege's review. Factored aura code into separate cc file. 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 653039beb183f12bb8a04aed79289e87f0fe49ad..415fe9402a73399873560edc63bc0e6e2361a5dc 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -1768,6 +1768,17 @@ const char kWebIntentsEnabled[] = "webintents.enabled";
#if defined(USE_AURA)
const char kPinnedLauncherApps[] = "pinned_launcher_apps";
+
+const char kMaximumSecondsBetweenDoubleClick[] =
+ "gesture.maximum_seconds_between_double_click";
+const char kMaximumTouchDownDurationInSecondsForClick[] =
+ "gesture.maximum_touch_down_duration_in_seconds_for_click";
+const char kMaximumTouchMoveInPixelsForClick[] =
+ "gesture.maximum_touch_move_in_pixels_for_click";
+const char kMinFlickSpeedSquared[] =
+ "gesture.min_flick_speed_squared";
+const char kMinimumTouchDownDurationInSecondsForClick[] =
+ "gesture.minimum_touch_down_duration_in_seconds_for_click";
#endif
// Indicates whether the browser is in managed mode.

Powered by Google App Engine
This is Rietveld 408576698