| 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 ANDROID_WEBVIEW_BROWSER_SURFACES_INSTANCE_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_SURFACES_INSTANCE_H_ |
| 6 #define ANDROID_WEBVIEW_BROWSER_SURFACES_INSTANCE_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_SURFACES_INSTANCE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 uint32_t next_client_id_; | 71 uint32_t next_client_id_; |
| 72 | 72 |
| 73 cc::FrameSinkId frame_sink_id_; | 73 cc::FrameSinkId frame_sink_id_; |
| 74 | 74 |
| 75 std::unique_ptr<cc::SurfaceManager> surface_manager_; | 75 std::unique_ptr<cc::SurfaceManager> surface_manager_; |
| 76 std::unique_ptr<cc::BeginFrameSource> begin_frame_source_; | 76 std::unique_ptr<cc::BeginFrameSource> begin_frame_source_; |
| 77 std::unique_ptr<cc::Display> display_; | 77 std::unique_ptr<cc::Display> display_; |
| 78 std::unique_ptr<cc::SurfaceIdAllocator> surface_id_allocator_; | 78 std::unique_ptr<cc::SurfaceIdAllocator> surface_id_allocator_; |
| 79 std::unique_ptr<cc::SurfaceFactory> surface_factory_; | 79 std::unique_ptr<cc::SurfaceFactory> surface_factory_; |
| 80 | 80 |
| 81 cc::LocalFrameId root_id_; | 81 cc::LocalSurfaceId root_id_; |
| 82 std::vector<cc::SurfaceId> child_ids_; | 82 std::vector<cc::SurfaceId> child_ids_; |
| 83 | 83 |
| 84 // This is owned by |display_|. | 84 // This is owned by |display_|. |
| 85 ParentOutputSurface* output_surface_; | 85 ParentOutputSurface* output_surface_; |
| 86 | 86 |
| 87 DISALLOW_COPY_AND_ASSIGN(SurfacesInstance); | 87 DISALLOW_COPY_AND_ASSIGN(SurfacesInstance); |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 } // namespace android_webview | 90 } // namespace android_webview |
| 91 | 91 |
| 92 #endif // ANDROID_WEBVIEW_BROWSER_SURFACES_INSTANCE_H_ | 92 #endif // ANDROID_WEBVIEW_BROWSER_SURFACES_INSTANCE_H_ |
| OLD | NEW |