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

Unified Diff: content/browser/renderer_host/web_input_event_aura.h

Issue 740653006: Convert MakeWebEvent parameter types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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/browser/renderer_host/web_input_event_aura.h
diff --git a/content/browser/renderer_host/web_input_event_aura.h b/content/browser/renderer_host/web_input_event_aura.h
index 7d6e6ca1bf30c0bc6835fbaa13e5e39841ffb193..6ce8ed20e3817c42d0d9c3ddd13554944a2c330f 100644
--- a/content/browser/renderer_host/web_input_event_aura.h
+++ b/content/browser/renderer_host/web_input_event_aura.h
@@ -23,17 +23,17 @@ namespace content {
const int kPixelsPerTick = 53;
CONTENT_EXPORT blink::WebMouseEvent MakeWebMouseEvent(
- ui::MouseEvent* event);
+ const ui::MouseEvent& event);
CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEvent(
- ui::MouseWheelEvent* event);
+ const ui::MouseWheelEvent& event);
CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEvent(
- ui::ScrollEvent* event);
+ const ui::ScrollEvent& event);
CONTENT_EXPORT blink::WebKeyboardEvent MakeWebKeyboardEvent(
- ui::KeyEvent* event);
+ const ui::KeyEvent& event);
CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent(
- ui::GestureEvent* event);
+ const ui::GestureEvent& event);
CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent(
- ui::ScrollEvent* event);
+ const ui::ScrollEvent& event);
CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEventFlingCancel();
} // namespace content
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_aura.cc ('k') | content/browser/renderer_host/web_input_event_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698