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

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: Fix build 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 678
679 // InputRouterClient 679 // InputRouterClient
680 virtual InputEventAckState FilterInputEvent( 680 virtual InputEventAckState FilterInputEvent(
681 const blink::WebInputEvent& event, 681 const blink::WebInputEvent& event,
682 const ui::LatencyInfo& latency_info) OVERRIDE; 682 const ui::LatencyInfo& latency_info) OVERRIDE;
683 virtual void IncrementInFlightEventCount() OVERRIDE; 683 virtual void IncrementInFlightEventCount() OVERRIDE;
684 virtual void DecrementInFlightEventCount() OVERRIDE; 684 virtual void DecrementInFlightEventCount() OVERRIDE;
685 virtual void OnHasTouchEventHandlers(bool has_handlers) OVERRIDE; 685 virtual void OnHasTouchEventHandlers(bool has_handlers) OVERRIDE;
686 virtual OverscrollController* GetOverscrollController() const OVERRIDE; 686 virtual OverscrollController* GetOverscrollController() const OVERRIDE;
687 virtual void DidFlush() OVERRIDE; 687 virtual void DidFlush() OVERRIDE;
688 virtual void DidOverscroll(const DidOverscrollParams& params) OVERRIDE;
688 689
689 // InputAckHandler 690 // InputAckHandler
690 virtual void OnKeyboardEventAck(const NativeWebKeyboardEvent& event, 691 virtual void OnKeyboardEventAck(const NativeWebKeyboardEvent& event,
691 InputEventAckState ack_result) OVERRIDE; 692 InputEventAckState ack_result) OVERRIDE;
692 virtual void OnWheelEventAck(const MouseWheelEventWithLatencyInfo& event, 693 virtual void OnWheelEventAck(const MouseWheelEventWithLatencyInfo& event,
693 InputEventAckState ack_result) OVERRIDE; 694 InputEventAckState ack_result) OVERRIDE;
694 virtual void OnTouchEventAck(const TouchEventWithLatencyInfo& event, 695 virtual void OnTouchEventAck(const TouchEventWithLatencyInfo& event,
695 InputEventAckState ack_result) OVERRIDE; 696 InputEventAckState ack_result) OVERRIDE;
696 virtual void OnGestureEventAck(const GestureEventWithLatencyInfo& event, 697 virtual void OnGestureEventAck(const GestureEventWithLatencyInfo& event,
697 InputEventAckState ack_result) OVERRIDE; 698 InputEventAckState ack_result) OVERRIDE;
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
873 #endif 874 #endif
874 875
875 int64 last_input_number_; 876 int64 last_input_number_;
876 877
877 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); 878 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl);
878 }; 879 };
879 880
880 } // namespace content 881 } // namespace content
881 882
882 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 883 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698