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

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

Issue 1528153004: Look Up on Force Touch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 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 <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 // InputRouterClient 604 // InputRouterClient
605 InputEventAckState FilterInputEvent( 605 InputEventAckState FilterInputEvent(
606 const blink::WebInputEvent& event, 606 const blink::WebInputEvent& event,
607 const ui::LatencyInfo& latency_info) override; 607 const ui::LatencyInfo& latency_info) override;
608 void IncrementInFlightEventCount() override; 608 void IncrementInFlightEventCount() override;
609 void DecrementInFlightEventCount() override; 609 void DecrementInFlightEventCount() override;
610 void OnHasTouchEventHandlers(bool has_handlers) override; 610 void OnHasTouchEventHandlers(bool has_handlers) override;
611 void DidFlush() override; 611 void DidFlush() override;
612 void DidOverscroll(const DidOverscrollParams& params) override; 612 void DidOverscroll(const DidOverscrollParams& params) override;
613 void DidStopFlinging() override; 613 void DidStopFlinging() override;
614 void DidSelectWordAtCoordinates() override;
614 615
615 // InputAckHandler 616 // InputAckHandler
616 void OnKeyboardEventAck(const NativeWebKeyboardEventWithLatencyInfo& event, 617 void OnKeyboardEventAck(const NativeWebKeyboardEventWithLatencyInfo& event,
617 InputEventAckState ack_result) override; 618 InputEventAckState ack_result) override;
618 void OnMouseEventAck(const MouseEventWithLatencyInfo& event, 619 void OnMouseEventAck(const MouseEventWithLatencyInfo& event,
619 InputEventAckState ack_result) override; 620 InputEventAckState ack_result) override;
620 void OnWheelEventAck(const MouseWheelEventWithLatencyInfo& event, 621 void OnWheelEventAck(const MouseWheelEventWithLatencyInfo& event,
621 InputEventAckState ack_result) override; 622 InputEventAckState ack_result) override;
622 void OnTouchEventAck(const TouchEventWithLatencyInfo& event, 623 void OnTouchEventAck(const TouchEventWithLatencyInfo& event,
623 InputEventAckState ack_result) override; 624 InputEventAckState ack_result) override;
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 scoped_ptr<base::ElapsedTimer> mouse_wheel_coalesce_timer_; 823 scoped_ptr<base::ElapsedTimer> mouse_wheel_coalesce_timer_;
823 824
824 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; 825 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_;
825 826
826 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); 827 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl);
827 }; 828 };
828 829
829 } // namespace content 830 } // namespace content
830 831
831 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 832 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698