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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 InputEventAckState ack_result) OVERRIDE; | 146 InputEventAckState ack_result) OVERRIDE; |
147 virtual void SetScrollOffsetPinning( | 147 virtual void SetScrollOffsetPinning( |
148 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 148 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
149 virtual void UnhandledWheelEvent( | 149 virtual void UnhandledWheelEvent( |
150 const blink::WebMouseWheelEvent& event) OVERRIDE; | 150 const blink::WebMouseWheelEvent& event) OVERRIDE; |
151 virtual InputEventAckState FilterInputEvent( | 151 virtual InputEventAckState FilterInputEvent( |
152 const blink::WebInputEvent& input_event) OVERRIDE; | 152 const blink::WebInputEvent& input_event) OVERRIDE; |
153 virtual void OnSetNeedsFlushInput() OVERRIDE; | 153 virtual void OnSetNeedsFlushInput() OVERRIDE; |
154 virtual void GestureEventAck(const blink::WebGestureEvent& event, | 154 virtual void GestureEventAck(const blink::WebGestureEvent& event, |
155 InputEventAckState ack_result) OVERRIDE; | 155 InputEventAckState ack_result) OVERRIDE; |
156 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 156 virtual void CreateBrowserAccessibilityManagerIfNeeded( |
| 157 BrowserAccessibilityDelegate* delegate) OVERRIDE; |
157 virtual bool LockMouse() OVERRIDE; | 158 virtual bool LockMouse() OVERRIDE; |
158 virtual void UnlockMouse() OVERRIDE; | 159 virtual void UnlockMouse() OVERRIDE; |
159 virtual void OnSwapCompositorFrame( | 160 virtual void OnSwapCompositorFrame( |
160 uint32 output_surface_id, | 161 uint32 output_surface_id, |
161 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 162 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
162 virtual void DidStopFlinging() OVERRIDE; | 163 virtual void DidStopFlinging() OVERRIDE; |
163 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, | 164 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, |
164 const SkBitmap& zoomed_bitmap) OVERRIDE; | 165 const SkBitmap& zoomed_bitmap) OVERRIDE; |
165 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 166 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
166 OVERRIDE; | 167 OVERRIDE; |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 }; | 355 }; |
355 | 356 |
356 scoped_ptr<LastFrameInfo> last_frame_info_; | 357 scoped_ptr<LastFrameInfo> last_frame_info_; |
357 | 358 |
358 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 359 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
359 }; | 360 }; |
360 | 361 |
361 } // namespace content | 362 } // namespace content |
362 | 363 |
363 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 364 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |