| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 UI_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ | 5 #ifndef UI_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ |
| 6 #define UI_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ | 6 #define UI_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "cc/output/copy_output_request.h" | 10 #include "cc/output/copy_output_request.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 WindowAndroidCompositor* compositor, | 57 WindowAndroidCompositor* compositor, |
| 58 const gfx::Rect& src_subrect_in_pixel, | 58 const gfx::Rect& src_subrect_in_pixel, |
| 59 cc::CopyOutputRequest::CopyOutputRequestCallback result_callback); | 59 cc::CopyOutputRequest::CopyOutputRequestCallback result_callback); |
| 60 | 60 |
| 61 void CompositorFrameSinkChanged(); | 61 void CompositorFrameSinkChanged(); |
| 62 | 62 |
| 63 void UpdateBackgroundColor(SkColor color); | 63 void UpdateBackgroundColor(SkColor color); |
| 64 | 64 |
| 65 void UpdateContainerSizeinDIP(const gfx::Size& size_in_dip); | 65 void UpdateContainerSizeinDIP(const gfx::Size& size_in_dip); |
| 66 | 66 |
| 67 // Called when this DFH is attached/detached from a parent browser compositor |
| 68 // and needs to be attached to the surface hierarchy. |
| 69 void RegisterSurfaceNamespaceHierarchy(uint32_t parent_id); |
| 70 void UnregisterSurfaceNamespaceHierarchy(); |
| 71 |
| 67 private: | 72 private: |
| 68 // cc::SurfaceFactoryClient implementation. | 73 // cc::SurfaceFactoryClient implementation. |
| 69 void ReturnResources(const cc::ReturnedResourceArray& resources) override; | 74 void ReturnResources(const cc::ReturnedResourceArray& resources) override; |
| 70 void SetBeginFrameSource(cc::BeginFrameSource* begin_frame_source) override; | 75 void SetBeginFrameSource(cc::BeginFrameSource* begin_frame_source) override; |
| 71 | 76 |
| 72 void UpdateBackgroundLayer(); | 77 void UpdateBackgroundLayer(); |
| 73 | 78 |
| 74 ViewAndroid* view_; | 79 ViewAndroid* view_; |
| 75 | 80 |
| 76 cc::SurfaceManager* surface_manager_; | 81 cc::SurfaceManager* surface_manager_; |
| 77 std::unique_ptr<cc::SurfaceIdAllocator> surface_id_allocator_; | 82 std::unique_ptr<cc::SurfaceIdAllocator> surface_id_allocator_; |
| 83 uint32_t registered_parent_client_id_ = 0u; |
| 78 ReturnResourcesCallback return_resources_callback_; | 84 ReturnResourcesCallback return_resources_callback_; |
| 79 | 85 |
| 80 std::unique_ptr<cc::SurfaceFactory> surface_factory_; | 86 std::unique_ptr<cc::SurfaceFactory> surface_factory_; |
| 81 | 87 |
| 82 struct FrameData { | 88 struct FrameData { |
| 83 FrameData(); | 89 FrameData(); |
| 84 ~FrameData(); | 90 ~FrameData(); |
| 85 | 91 |
| 86 cc::SurfaceId surface_id; | 92 cc::SurfaceId surface_id; |
| 87 gfx::Size surface_size; | 93 gfx::Size surface_size; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 99 scoped_refptr<cc::Layer> background_layer_; | 105 scoped_refptr<cc::Layer> background_layer_; |
| 100 | 106 |
| 101 gfx::Size container_size_in_dip_; | 107 gfx::Size container_size_in_dip_; |
| 102 | 108 |
| 103 DISALLOW_COPY_AND_ASSIGN(DelegatedFrameHostAndroid); | 109 DISALLOW_COPY_AND_ASSIGN(DelegatedFrameHostAndroid); |
| 104 }; | 110 }; |
| 105 | 111 |
| 106 } // namespace ui | 112 } // namespace ui |
| 107 | 113 |
| 108 #endif // UI_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ | 114 #endif // UI_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ |
| OLD | NEW |