| 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_COMPOSITOR_IMPL_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 void RecordWheelAndTouchScrollingCount(bool has_scrolled_by_wheel, | 94 void RecordWheelAndTouchScrollingCount(bool has_scrolled_by_wheel, |
| 95 bool has_scrolled_by_touch) override {} | 95 bool has_scrolled_by_touch) override {} |
| 96 void RequestNewCompositorFrameSink() override; | 96 void RequestNewCompositorFrameSink() override; |
| 97 void DidInitializeCompositorFrameSink() override; | 97 void DidInitializeCompositorFrameSink() override; |
| 98 void DidFailToInitializeCompositorFrameSink() override; | 98 void DidFailToInitializeCompositorFrameSink() override; |
| 99 void WillCommit() override {} | 99 void WillCommit() override {} |
| 100 void DidCommit() override; | 100 void DidCommit() override; |
| 101 void DidCommitAndDrawFrame() override {} | 101 void DidCommitAndDrawFrame() override {} |
| 102 void DidReceiveCompositorFrameAck() override; | 102 void DidReceiveCompositorFrameAck() override; |
| 103 void DidCompletePageScaleAnimation() override {} | 103 void DidCompletePageScaleAnimation() override {} |
| 104 bool IsForSubframe() override; |
| 104 | 105 |
| 105 // LayerTreeHostSingleThreadClient implementation. | 106 // LayerTreeHostSingleThreadClient implementation. |
| 106 void DidSubmitCompositorFrame() override; | 107 void DidSubmitCompositorFrame() override; |
| 107 void DidLoseCompositorFrameSink() override; | 108 void DidLoseCompositorFrameSink() override; |
| 108 | 109 |
| 109 // WindowAndroidCompositor implementation. | 110 // WindowAndroidCompositor implementation. |
| 110 void AttachLayerForReadback(scoped_refptr<cc::Layer> layer) override; | 111 void AttachLayerForReadback(scoped_refptr<cc::Layer> layer) override; |
| 111 void RequestCopyOfOutputOnRootLayer( | 112 void RequestCopyOfOutputOnRootLayer( |
| 112 std::unique_ptr<cc::CopyOutputRequest> request) override; | 113 std::unique_ptr<cc::CopyOutputRequest> request) override; |
| 113 void SetNeedsAnimate() override; | 114 void SetNeedsAnimate() override; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 std::unordered_set<cc::FrameSinkId, cc::FrameSinkIdHash> | 184 std::unordered_set<cc::FrameSinkId, cc::FrameSinkIdHash> |
| 184 pending_child_frame_sink_ids_; | 185 pending_child_frame_sink_ids_; |
| 185 base::WeakPtrFactory<CompositorImpl> weak_factory_; | 186 base::WeakPtrFactory<CompositorImpl> weak_factory_; |
| 186 | 187 |
| 187 DISALLOW_COPY_AND_ASSIGN(CompositorImpl); | 188 DISALLOW_COPY_AND_ASSIGN(CompositorImpl); |
| 188 }; | 189 }; |
| 189 | 190 |
| 190 } // namespace content | 191 } // namespace content |
| 191 | 192 |
| 192 #endif // CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ | 193 #endif // CONTENT_BROWSER_RENDERER_HOST_COMPOSITOR_IMPL_ANDROID_H_ |
| OLD | NEW |