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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 InputEventAckState FilterInputEvent( | 146 virtual InputEventAckState FilterInputEvent( |
147 const blink::WebInputEvent& input_event) OVERRIDE; | 147 const blink::WebInputEvent& input_event) OVERRIDE; |
148 virtual void OnSetNeedsFlushInput() OVERRIDE; | 148 virtual void OnSetNeedsFlushInput() OVERRIDE; |
149 virtual void GestureEventAck(const blink::WebGestureEvent& event, | 149 virtual void GestureEventAck(const blink::WebGestureEvent& event, |
150 InputEventAckState ack_result) OVERRIDE; | 150 InputEventAckState ack_result) OVERRIDE; |
151 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 151 virtual BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 152 BrowserAccessibilityDelegate* delegate) OVERRIDE; |
152 virtual bool LockMouse() OVERRIDE; | 153 virtual bool LockMouse() OVERRIDE; |
153 virtual void UnlockMouse() OVERRIDE; | 154 virtual void UnlockMouse() OVERRIDE; |
154 virtual void OnSwapCompositorFrame( | 155 virtual void OnSwapCompositorFrame( |
155 uint32 output_surface_id, | 156 uint32 output_surface_id, |
156 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 157 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
157 virtual void DidOverscroll(const DidOverscrollParams& params) OVERRIDE; | 158 virtual void DidOverscroll(const DidOverscrollParams& params) OVERRIDE; |
158 virtual void DidStopFlinging() OVERRIDE; | 159 virtual void DidStopFlinging() OVERRIDE; |
159 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, | 160 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, |
160 const SkBitmap& zoomed_bitmap) OVERRIDE; | 161 const SkBitmap& zoomed_bitmap) OVERRIDE; |
161 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 162 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 scoped_ptr<LastFrameInfo> last_frame_info_; | 372 scoped_ptr<LastFrameInfo> last_frame_info_; |
372 | 373 |
373 TextSurroundingSelectionCallback text_surrounding_selection_callback_; | 374 TextSurroundingSelectionCallback text_surrounding_selection_callback_; |
374 | 375 |
375 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 376 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
376 }; | 377 }; |
377 | 378 |
378 } // namespace content | 379 } // namespace content |
379 | 380 |
380 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 381 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |