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

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

Issue 2573073003: Collapse the API surface on WebInputEvent via accessor functions. (Closed)
Patch Set: Created 4 years 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: blimp/engine/session/tab.cc
diff --git a/blimp/engine/session/tab.cc b/blimp/engine/session/tab.cc
index 49bba5de382a29d56f666c52e058d9c55539e290..a2f15c0088c5cfbad2406f8ffc25c5d73f950040 100644
--- a/blimp/engine/session/tab.cc
+++ b/blimp/engine/session/tab.cc
@@ -167,7 +167,7 @@ void Tab::SendPageLoadStatusUpdate(PageLoadStatus load_status) {
void Tab::OnWebGestureEvent(content::RenderWidgetHost* render_widget_host,
std::unique_ptr<blink::WebGestureEvent> event) {
- TRACE_EVENT1("blimp", "Tab::OnWebGestureEvent", "type", event->type);
+ TRACE_EVENT1("blimp", "Tab::OnWebGestureEvent", "type", event->type());
render_widget_host->ForwardGestureEvent(*event);
}

Powered by Google App Engine
This is Rietveld 408576698