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 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 151 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; |
152 BrowserAccessibilityDelegate* delegate) OVERRIDE; | |
153 virtual bool LockMouse() OVERRIDE; | 152 virtual bool LockMouse() OVERRIDE; |
154 virtual void UnlockMouse() OVERRIDE; | 153 virtual void UnlockMouse() OVERRIDE; |
155 virtual void OnSwapCompositorFrame( | 154 virtual void OnSwapCompositorFrame( |
156 uint32 output_surface_id, | 155 uint32 output_surface_id, |
157 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 156 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
158 virtual void DidOverscroll(const DidOverscrollParams& params) OVERRIDE; | 157 virtual void DidOverscroll(const DidOverscrollParams& params) OVERRIDE; |
159 virtual void DidStopFlinging() OVERRIDE; | 158 virtual void DidStopFlinging() OVERRIDE; |
160 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, | 159 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, |
161 const SkBitmap& zoomed_bitmap) OVERRIDE; | 160 const SkBitmap& zoomed_bitmap) OVERRIDE; |
162 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 161 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 scoped_ptr<LastFrameInfo> last_frame_info_; | 372 scoped_ptr<LastFrameInfo> last_frame_info_; |
374 | 373 |
375 TextSurroundingSelectionCallback text_surrounding_selection_callback_; | 374 TextSurroundingSelectionCallback text_surrounding_selection_callback_; |
376 | 375 |
377 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 376 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
378 }; | 377 }; |
379 | 378 |
380 } // namespace content | 379 } // namespace content |
381 | 380 |
382 #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 |