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

Unified Diff: content/common/input/input_param_traits.cc

Issue 929333002: Adding synthetic touch/mouse drag [Part1] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Splitting CL and adding unittests. Created 5 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: content/common/input/input_param_traits.cc
diff --git a/content/common/input/input_param_traits.cc b/content/common/input/input_param_traits.cc
index e9aba992a82411863a9e80576e5a7c452b06f4dd..3b43f7eec526633bc60ed8f231b1af5380d1a4f1 100644
--- a/content/common/input/input_param_traits.cc
+++ b/content/common/input/input_param_traits.cc
@@ -70,6 +70,10 @@ void ParamTraits<content::SyntheticGesturePacket>::Write(Message* m,
WriteParam(m, *content::SyntheticTapGestureParams::Cast(
p.gesture_params()));
break;
+ // TODO (ssid) When API and IPC messages are set up, implement this.
petrcermak 2015/02/20 12:21:09 super-nit: I think that there should be no space b
ssid 2015/02/20 15:58:30 Done.
+ case content::SyntheticGestureParams::SMOOTH_DRAG_GESTURE:
+ NOTIMPLEMENTED();
+ break;
}
}
@@ -122,6 +126,10 @@ void ParamTraits<content::SyntheticGesturePacket>::Log(const param_type& p,
*content::SyntheticTapGestureParams::Cast(p.gesture_params()),
l);
break;
+ // TODO (ssid) When API and IPC messages are set up, implement this.
petrcermak 2015/02/20 12:21:09 ditto
+ case content::SyntheticGestureParams::SMOOTH_DRAG_GESTURE:
+ NOTIMPLEMENTED();
+ break;
}
}

Powered by Google App Engine
This is Rietveld 408576698