Chromium Code Reviews| Index: content/renderer/render_view_impl.h |
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h |
| index e379b7e4ff1c056451b15ca432463371809f6e59..a4b481caa47862fd015d955f41ed53136b047a0b 100644 |
| --- a/content/renderer/render_view_impl.h |
| +++ b/content/renderer/render_view_impl.h |
| @@ -642,9 +642,11 @@ class CONTENT_EXPORT RenderViewImpl |
| void UpdateWebViewWithDeviceScaleFactor(); |
| // Send the appropriate ack to be able discard this input event message. |
| - void OnDiscardInputEvent(const blink::WebInputEvent* input_event, |
| - const ui::LatencyInfo& latency_info, |
| - InputEventDispatchType dispatch_type); |
| + void OnDiscardInputEvent( |
| + const blink::WebInputEvent* input_event, |
| + const std::vector<const blink::WebInputEvent*>& coalescedEvents, |
|
dcheng
2017/01/23 19:38:58
Nit: coalesced_events here and in the .cc
Navid Zolghadr
2017/01/23 21:42:04
Done.
|
| + const ui::LatencyInfo& latency_info, |
| + InputEventDispatchType dispatch_type); |
| // --------------------------------------------------------------------------- |
| // ADDING NEW FUNCTIONS? Please keep private functions alphabetized and put |