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

Side by Side Diff: content/browser/renderer_host/render_widget_host_impl.h

Issue 281723010: Bundle DidOverscrollParams with the InputEventAck (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates Created 6 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <list> 9 #include <list>
10 #include <map> 10 #include <map>
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 684
685 // InputRouterClient 685 // InputRouterClient
686 virtual InputEventAckState FilterInputEvent( 686 virtual InputEventAckState FilterInputEvent(
687 const blink::WebInputEvent& event, 687 const blink::WebInputEvent& event,
688 const ui::LatencyInfo& latency_info) OVERRIDE; 688 const ui::LatencyInfo& latency_info) OVERRIDE;
689 virtual void IncrementInFlightEventCount() OVERRIDE; 689 virtual void IncrementInFlightEventCount() OVERRIDE;
690 virtual void DecrementInFlightEventCount() OVERRIDE; 690 virtual void DecrementInFlightEventCount() OVERRIDE;
691 virtual void OnHasTouchEventHandlers(bool has_handlers) OVERRIDE; 691 virtual void OnHasTouchEventHandlers(bool has_handlers) OVERRIDE;
692 virtual OverscrollController* GetOverscrollController() const OVERRIDE; 692 virtual OverscrollController* GetOverscrollController() const OVERRIDE;
693 virtual void DidFlush() OVERRIDE; 693 virtual void DidFlush() OVERRIDE;
694 virtual void DidOverscroll(const DidOverscrollParams& params) OVERRIDE;
694 695
695 // InputAckHandler 696 // InputAckHandler
696 virtual void OnKeyboardEventAck(const NativeWebKeyboardEvent& event, 697 virtual void OnKeyboardEventAck(const NativeWebKeyboardEvent& event,
697 InputEventAckState ack_result) OVERRIDE; 698 InputEventAckState ack_result) OVERRIDE;
698 virtual void OnWheelEventAck(const MouseWheelEventWithLatencyInfo& event, 699 virtual void OnWheelEventAck(const MouseWheelEventWithLatencyInfo& event,
699 InputEventAckState ack_result) OVERRIDE; 700 InputEventAckState ack_result) OVERRIDE;
700 virtual void OnTouchEventAck(const TouchEventWithLatencyInfo& event, 701 virtual void OnTouchEventAck(const TouchEventWithLatencyInfo& event,
701 InputEventAckState ack_result) OVERRIDE; 702 InputEventAckState ack_result) OVERRIDE;
702 virtual void OnGestureEventAck(const GestureEventWithLatencyInfo& event, 703 virtual void OnGestureEventAck(const GestureEventWithLatencyInfo& event,
703 InputEventAckState ack_result) OVERRIDE; 704 InputEventAckState ack_result) OVERRIDE;
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 #endif 886 #endif
886 887
887 int64 last_input_number_; 888 int64 last_input_number_;
888 889
889 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); 890 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl);
890 }; 891 };
891 892
892 } // namespace content 893 } // namespace content
893 894
894 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 895 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698