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

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: Addressed few comments. 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..33769fe0b9833afdc559414a1294a6dd45547c41 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.
+ 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.
+ case content::SyntheticGestureParams::SMOOTH_DRAG_GESTURE:
+ NOTIMPLEMENTED();
+ break;
}
}

Powered by Google App Engine
This is Rietveld 408576698