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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 InputEventAckState ack_result) OVERRIDE; | 175 InputEventAckState ack_result) OVERRIDE; |
176 virtual BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 176 virtual BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
177 BrowserAccessibilityDelegate* delegate) OVERRIDE; | 177 BrowserAccessibilityDelegate* delegate) OVERRIDE; |
178 virtual bool LockMouse() OVERRIDE; | 178 virtual bool LockMouse() OVERRIDE; |
179 virtual void UnlockMouse() OVERRIDE; | 179 virtual void UnlockMouse() OVERRIDE; |
180 virtual void OnSwapCompositorFrame( | 180 virtual void OnSwapCompositorFrame( |
181 uint32 output_surface_id, | 181 uint32 output_surface_id, |
182 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 182 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
183 virtual void DidOverscroll(const DidOverscrollParams& params) OVERRIDE; | 183 virtual void DidOverscroll(const DidOverscrollParams& params) OVERRIDE; |
184 virtual void DidStopFlinging() OVERRIDE; | 184 virtual void DidStopFlinging() OVERRIDE; |
185 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, | 185 virtual void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, |
186 const SkBitmap& zoomed_bitmap) OVERRIDE; | 186 const SkBitmap& zoomed_bitmap) OVERRIDE; |
187 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 187 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
188 OVERRIDE; | 188 OVERRIDE; |
189 virtual void LockCompositingSurface() OVERRIDE; | 189 virtual void LockCompositingSurface() OVERRIDE; |
190 virtual void UnlockCompositingSurface() OVERRIDE; | 190 virtual void UnlockCompositingSurface() OVERRIDE; |
191 virtual void OnTextSurroundingSelectionResponse(const base::string16& content, | 191 virtual void OnTextSurroundingSelectionResponse(const base::string16& content, |
192 size_t start_offset, | 192 size_t start_offset, |
193 size_t end_offset) OVERRIDE; | 193 size_t end_offset) OVERRIDE; |
194 | 194 |
195 // cc::DelegatedFrameResourceCollectionClient implementation. | 195 // cc::DelegatedFrameResourceCollectionClient implementation. |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 gfx::Vector2dF last_scroll_offset_; | 434 gfx::Vector2dF last_scroll_offset_; |
435 | 435 |
436 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 436 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
437 | 437 |
438 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 438 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
439 }; | 439 }; |
440 | 440 |
441 } // namespace content | 441 } // namespace content |
442 | 442 |
443 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 443 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |