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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 InputEventAckState ack_result) override; | 141 InputEventAckState ack_result) override; |
142 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 142 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
143 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; | 143 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; |
144 bool LockMouse() override; | 144 bool LockMouse() override; |
145 void UnlockMouse() override; | 145 void UnlockMouse() override; |
146 void DidCreateNewRendererCompositorFrameSink( | 146 void DidCreateNewRendererCompositorFrameSink( |
147 cc::mojom::MojoCompositorFrameSinkClient* renderer_compositor_frame_sink) | 147 cc::mojom::MojoCompositorFrameSinkClient* renderer_compositor_frame_sink) |
148 override; | 148 override; |
149 void SubmitCompositorFrame(const cc::LocalSurfaceId& local_surface_id, | 149 void SubmitCompositorFrame(const cc::LocalSurfaceId& local_surface_id, |
150 cc::CompositorFrame frame) override; | 150 cc::CompositorFrame frame) override; |
151 void OnBeginFrameDidNotSwap(const cc::BeginFrameAck& ack) override; | 151 void OnBeginFrameDidNotProduceFrame(const cc::BeginFrameAck& ack) override; |
152 void ClearCompositorFrame() override; | 152 void ClearCompositorFrame() override; |
153 void SetIsInVR(bool is_in_vr) override; | 153 void SetIsInVR(bool is_in_vr) override; |
154 bool IsInVR() const override; | 154 bool IsInVR() const override; |
155 void DidOverscroll(const ui::DidOverscrollParams& params) override; | 155 void DidOverscroll(const ui::DidOverscrollParams& params) override; |
156 void DidStopFlinging() override; | 156 void DidStopFlinging() override; |
157 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, | 157 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, |
158 const SkBitmap& zoomed_bitmap) override; | 158 const SkBitmap& zoomed_bitmap) override; |
159 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 159 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
160 override; | 160 override; |
161 void OnDidNavigateMainFrameToNewPage() override; | 161 void OnDidNavigateMainFrameToNewPage() override; |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 base::ObserverList<DestructionObserver> destruction_observers_; | 427 base::ObserverList<DestructionObserver> destruction_observers_; |
428 | 428 |
429 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 429 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
430 | 430 |
431 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 431 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
432 }; | 432 }; |
433 | 433 |
434 } // namespace content | 434 } // namespace content |
435 | 435 |
436 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 436 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |