| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 const blink::WebInputEvent& input_event) override; | 144 const blink::WebInputEvent& input_event) override; |
| 145 void OnSetNeedsFlushInput() override; | 145 void OnSetNeedsFlushInput() override; |
| 146 void GestureEventAck(const blink::WebGestureEvent& event, | 146 void GestureEventAck(const blink::WebGestureEvent& event, |
| 147 InputEventAckState ack_result) override; | 147 InputEventAckState ack_result) override; |
| 148 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 148 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 149 BrowserAccessibilityDelegate* delegate) override; | 149 BrowserAccessibilityDelegate* delegate) override; |
| 150 bool LockMouse() override; | 150 bool LockMouse() override; |
| 151 void UnlockMouse() override; | 151 void UnlockMouse() override; |
| 152 void OnSwapCompositorFrame(uint32 output_surface_id, | 152 void OnSwapCompositorFrame(uint32 output_surface_id, |
| 153 scoped_ptr<cc::CompositorFrame> frame) override; | 153 scoped_ptr<cc::CompositorFrame> frame) override; |
| 154 void ClearCompositorFrame() override; |
| 154 void DidOverscroll(const DidOverscrollParams& params) override; | 155 void DidOverscroll(const DidOverscrollParams& params) override; |
| 155 void DidStopFlinging() override; | 156 void DidStopFlinging() override; |
| 156 uint32_t GetSurfaceIdNamespace() override; | 157 uint32_t GetSurfaceIdNamespace() override; |
| 157 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, | 158 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, |
| 158 const SkBitmap& zoomed_bitmap) override; | 159 const SkBitmap& zoomed_bitmap) override; |
| 159 scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() override; | 160 scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() override; |
| 160 void LockCompositingSurface() override; | 161 void LockCompositingSurface() override; |
| 161 void UnlockCompositingSurface() override; | 162 void UnlockCompositingSurface() override; |
| 162 void OnTextSurroundingSelectionResponse(const base::string16& content, | 163 void OnTextSurroundingSelectionResponse(const base::string16& content, |
| 163 size_t start_offset, | 164 size_t start_offset, |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 gfx::Vector2dF last_scroll_offset_; | 413 gfx::Vector2dF last_scroll_offset_; |
| 413 | 414 |
| 414 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 415 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
| 415 | 416 |
| 416 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 417 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 417 }; | 418 }; |
| 418 | 419 |
| 419 } // namespace content | 420 } // namespace content |
| 420 | 421 |
| 421 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 422 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |