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

Unified Diff: blimp/engine/session/blimp_engine_session.cc

Issue 1975213003: Blimp Client: add support for tap gesture events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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
« no previous file with comments | « blimp/common/proto/input.proto ('k') | blimp/net/input_message_converter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/engine/session/blimp_engine_session.cc
diff --git a/blimp/engine/session/blimp_engine_session.cc b/blimp/engine/session/blimp_engine_session.cc
index 037f3e809d30393841b0a99c16204d2f07593f35..60297171e4d31bb04d4aba86390295c1e340914b 100644
--- a/blimp/engine/session/blimp_engine_session.cc
+++ b/blimp/engine/session/blimp_engine_session.cc
@@ -388,8 +388,8 @@ void BlimpEngineSession::Reload(const int target_tab_id) {
void BlimpEngineSession::OnWebGestureEvent(
content::RenderWidgetHost* render_widget_host,
std::unique_ptr<blink::WebGestureEvent> event) {
- TRACE_EVENT0("blimp", "BlimpEngineSession::OnWebGestureEvent");
-
+ TRACE_EVENT1("blimp", "BlimpEngineSession::OnWebGestureEvent", "type",
+ event->type);
render_widget_host->ForwardGestureEvent(*event);
}
« no previous file with comments | « blimp/common/proto/input.proto ('k') | blimp/net/input_message_converter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698