OLD | NEW |
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_VIEW_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <queue> | 9 #include <queue> |
10 | 10 |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 virtual bool CanCopyToVideoFrame() const OVERRIDE; | 145 virtual bool CanCopyToVideoFrame() const OVERRIDE; |
146 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE; | 146 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE; |
147 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; | 147 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; |
148 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 148 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
149 virtual void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, | 149 virtual void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, |
150 InputEventAckState ack_result) OVERRIDE; | 150 InputEventAckState ack_result) OVERRIDE; |
151 virtual void SetHasHorizontalScrollbar( | 151 virtual void SetHasHorizontalScrollbar( |
152 bool has_horizontal_scrollbar) OVERRIDE; | 152 bool has_horizontal_scrollbar) OVERRIDE; |
153 virtual void SetScrollOffsetPinning( | 153 virtual void SetScrollOffsetPinning( |
154 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 154 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
155 virtual void UnhandledWheelEvent( | |
156 const blink::WebMouseWheelEvent& event) OVERRIDE; | |
157 virtual InputEventAckState FilterInputEvent( | 155 virtual InputEventAckState FilterInputEvent( |
158 const blink::WebInputEvent& input_event) OVERRIDE; | 156 const blink::WebInputEvent& input_event) OVERRIDE; |
159 virtual void OnSetNeedsFlushInput() OVERRIDE; | 157 virtual void OnSetNeedsFlushInput() OVERRIDE; |
160 virtual void GestureEventAck(const blink::WebGestureEvent& event, | 158 virtual void GestureEventAck(const blink::WebGestureEvent& event, |
161 InputEventAckState ack_result) OVERRIDE; | 159 InputEventAckState ack_result) OVERRIDE; |
162 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 160 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; |
163 virtual bool LockMouse() OVERRIDE; | 161 virtual bool LockMouse() OVERRIDE; |
164 virtual void UnlockMouse() OVERRIDE; | 162 virtual void UnlockMouse() OVERRIDE; |
165 virtual void OnSwapCompositorFrame( | 163 virtual void OnSwapCompositorFrame( |
166 uint32 output_surface_id, | 164 uint32 output_surface_id, |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 }; | 360 }; |
363 | 361 |
364 scoped_ptr<LastFrameInfo> last_frame_info_; | 362 scoped_ptr<LastFrameInfo> last_frame_info_; |
365 | 363 |
366 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 364 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
367 }; | 365 }; |
368 | 366 |
369 } // namespace content | 367 } // namespace content |
370 | 368 |
371 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 369 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |