| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 const scoped_refptr<media::VideoFrame>& target, | 138 const scoped_refptr<media::VideoFrame>& target, |
| 139 const base::Callback<void(bool)>& callback) OVERRIDE; | 139 const base::Callback<void(bool)>& callback) OVERRIDE; |
| 140 virtual bool CanCopyToVideoFrame() const OVERRIDE; | 140 virtual bool CanCopyToVideoFrame() const OVERRIDE; |
| 141 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE; | 141 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE; |
| 142 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; | 142 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; |
| 143 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 143 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
| 144 virtual void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, | 144 virtual void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, |
| 145 InputEventAckState ack_result) OVERRIDE; | 145 InputEventAckState ack_result) OVERRIDE; |
| 146 virtual void SetScrollOffsetPinning( | 146 virtual void SetScrollOffsetPinning( |
| 147 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 147 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
| 148 virtual void UnhandledWheelEvent( | |
| 149 const blink::WebMouseWheelEvent& event) OVERRIDE; | |
| 150 virtual InputEventAckState FilterInputEvent( | 148 virtual InputEventAckState FilterInputEvent( |
| 151 const blink::WebInputEvent& input_event) OVERRIDE; | 149 const blink::WebInputEvent& input_event) OVERRIDE; |
| 152 virtual void OnSetNeedsFlushInput() OVERRIDE; | 150 virtual void OnSetNeedsFlushInput() OVERRIDE; |
| 153 virtual void GestureEventAck(const blink::WebGestureEvent& event, | 151 virtual void GestureEventAck(const blink::WebGestureEvent& event, |
| 154 InputEventAckState ack_result) OVERRIDE; | 152 InputEventAckState ack_result) OVERRIDE; |
| 155 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 153 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; |
| 156 virtual bool LockMouse() OVERRIDE; | 154 virtual bool LockMouse() OVERRIDE; |
| 157 virtual void UnlockMouse() OVERRIDE; | 155 virtual void UnlockMouse() OVERRIDE; |
| 158 virtual void OnSwapCompositorFrame( | 156 virtual void OnSwapCompositorFrame( |
| 159 uint32 output_surface_id, | 157 uint32 output_surface_id, |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 }; | 351 }; |
| 354 | 352 |
| 355 scoped_ptr<LastFrameInfo> last_frame_info_; | 353 scoped_ptr<LastFrameInfo> last_frame_info_; |
| 356 | 354 |
| 357 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 355 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 358 }; | 356 }; |
| 359 | 357 |
| 360 } // namespace content | 358 } // namespace content |
| 361 | 359 |
| 362 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 360 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |