| 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; |
| 155 virtual InputEventAckState FilterInputEvent( | 157 virtual InputEventAckState FilterInputEvent( |
| 156 const blink::WebInputEvent& input_event) OVERRIDE; | 158 const blink::WebInputEvent& input_event) OVERRIDE; |
| 157 virtual void OnSetNeedsFlushInput() OVERRIDE; | 159 virtual void OnSetNeedsFlushInput() OVERRIDE; |
| 158 virtual void GestureEventAck(const blink::WebGestureEvent& event, | 160 virtual void GestureEventAck(const blink::WebGestureEvent& event, |
| 159 InputEventAckState ack_result) OVERRIDE; | 161 InputEventAckState ack_result) OVERRIDE; |
| 160 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 162 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; |
| 161 virtual bool LockMouse() OVERRIDE; | 163 virtual bool LockMouse() OVERRIDE; |
| 162 virtual void UnlockMouse() OVERRIDE; | 164 virtual void UnlockMouse() OVERRIDE; |
| 163 virtual void OnSwapCompositorFrame( | 165 virtual void OnSwapCompositorFrame( |
| 164 uint32 output_surface_id, | 166 uint32 output_surface_id, |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 }; | 362 }; |
| 361 | 363 |
| 362 scoped_ptr<LastFrameInfo> last_frame_info_; | 364 scoped_ptr<LastFrameInfo> last_frame_info_; |
| 363 | 365 |
| 364 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 366 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 365 }; | 367 }; |
| 366 | 368 |
| 367 } // namespace content | 369 } // namespace content |
| 368 | 370 |
| 369 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 371 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |