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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 InputEventAckState ack_result) override; | 148 InputEventAckState ack_result) override; |
149 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 149 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
150 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; | 150 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; |
151 bool LockMouse() override; | 151 bool LockMouse() override; |
152 void UnlockMouse() override; | 152 void UnlockMouse() override; |
153 void OnSwapCompositorFrame(uint32_t output_surface_id, | 153 void OnSwapCompositorFrame(uint32_t output_surface_id, |
154 cc::CompositorFrame frame) override; | 154 cc::CompositorFrame frame) override; |
155 void ClearCompositorFrame() override; | 155 void ClearCompositorFrame() override; |
156 void DidOverscroll(const DidOverscrollParams& params) override; | 156 void DidOverscroll(const DidOverscrollParams& params) override; |
157 void DidStopFlinging() override; | 157 void DidStopFlinging() override; |
158 uint32_t GetSurfaceIdNamespace() override; | 158 uint32_t GetSurfaceClientId() override; |
159 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, | 159 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, |
160 const SkBitmap& zoomed_bitmap) override; | 160 const SkBitmap& zoomed_bitmap) override; |
161 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 161 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
162 override; | 162 override; |
163 void LockCompositingSurface() override; | 163 void LockCompositingSurface() override; |
164 void UnlockCompositingSurface() override; | 164 void UnlockCompositingSurface() override; |
165 void OnTextSurroundingSelectionResponse(const base::string16& content, | 165 void OnTextSurroundingSelectionResponse(const base::string16& content, |
166 size_t start_offset, | 166 size_t start_offset, |
167 size_t end_offset) override; | 167 size_t end_offset) override; |
168 void OnDidNavigateMainFrameToNewPage() override; | 168 void OnDidNavigateMainFrameToNewPage() override; |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 gfx::Vector2dF last_scroll_offset_; | 401 gfx::Vector2dF last_scroll_offset_; |
402 | 402 |
403 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 403 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
404 | 404 |
405 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 405 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
406 }; | 406 }; |
407 | 407 |
408 } // namespace content | 408 } // namespace content |
409 | 409 |
410 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 410 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |