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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE; | 143 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE; |
144 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; | 144 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; |
145 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 145 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
146 virtual void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, | 146 virtual void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, |
147 InputEventAckState ack_result) OVERRIDE; | 147 InputEventAckState ack_result) OVERRIDE; |
148 virtual InputEventAckState FilterInputEvent( | 148 virtual InputEventAckState FilterInputEvent( |
149 const blink::WebInputEvent& input_event) OVERRIDE; | 149 const blink::WebInputEvent& input_event) OVERRIDE; |
150 virtual void OnSetNeedsFlushInput() OVERRIDE; | 150 virtual void OnSetNeedsFlushInput() OVERRIDE; |
151 virtual void GestureEventAck(const blink::WebGestureEvent& event, | 151 virtual void GestureEventAck(const blink::WebGestureEvent& event, |
152 InputEventAckState ack_result) OVERRIDE; | 152 InputEventAckState ack_result) OVERRIDE; |
153 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 153 virtual BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 154 BrowserAccessibilityDelegate* delegate) OVERRIDE; |
154 virtual bool LockMouse() OVERRIDE; | 155 virtual bool LockMouse() OVERRIDE; |
155 virtual void UnlockMouse() OVERRIDE; | 156 virtual void UnlockMouse() OVERRIDE; |
156 virtual void OnSwapCompositorFrame( | 157 virtual void OnSwapCompositorFrame( |
157 uint32 output_surface_id, | 158 uint32 output_surface_id, |
158 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 159 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
159 virtual void DidOverscroll(const DidOverscrollParams& params) OVERRIDE; | 160 virtual void DidOverscroll(const DidOverscrollParams& params) OVERRIDE; |
160 virtual void DidStopFlinging() OVERRIDE; | 161 virtual void DidStopFlinging() OVERRIDE; |
161 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, | 162 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, |
162 const SkBitmap& zoomed_bitmap) OVERRIDE; | 163 const SkBitmap& zoomed_bitmap) OVERRIDE; |
163 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 164 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 scoped_ptr<LastFrameInfo> last_frame_info_; | 395 scoped_ptr<LastFrameInfo> last_frame_info_; |
395 | 396 |
396 TextSurroundingSelectionCallback text_surrounding_selection_callback_; | 397 TextSurroundingSelectionCallback text_surrounding_selection_callback_; |
397 | 398 |
398 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 399 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
399 }; | 400 }; |
400 | 401 |
401 } // namespace content | 402 } // namespace content |
402 | 403 |
403 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 404 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |