| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #include "content/renderer/mus/renderer_window_tree_client.h" | 5 #include "content/renderer/mus/renderer_window_tree_client.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 cc::mojom::MojoCompositorFrameSinkRequest sink_request = | 80 cc::mojom::MojoCompositorFrameSinkRequest sink_request = |
| 81 mojo::MakeRequest(&sink_info); | 81 mojo::MakeRequest(&sink_info); |
| 82 cc::mojom::MojoCompositorFrameSinkClientPtr client; | 82 cc::mojom::MojoCompositorFrameSinkClientPtr client; |
| 83 cc::mojom::MojoCompositorFrameSinkClientRequest client_request = | 83 cc::mojom::MojoCompositorFrameSinkClientRequest client_request = |
| 84 mojo::MakeRequest(&client); | 84 mojo::MakeRequest(&client); |
| 85 constexpr bool enable_surface_synchronization = true; | 85 constexpr bool enable_surface_synchronization = true; |
| 86 auto frame_sink = base::MakeUnique<viz::ClientCompositorFrameSink>( | 86 auto frame_sink = base::MakeUnique<viz::ClientCompositorFrameSink>( |
| 87 std::move(context_provider), nullptr /* worker_context_provider */, | 87 std::move(context_provider), nullptr /* worker_context_provider */, |
| 88 gpu_memory_buffer_manager, nullptr /* shared_bitmap_manager */, | 88 gpu_memory_buffer_manager, nullptr /* shared_bitmap_manager */, |
| 89 nullptr /* synthetic_begin_frame_source */, std::move(sink_info), | 89 nullptr /* synthetic_begin_frame_source */, std::move(sink_info), |
| 90 std::move(client_request), enable_surface_synchronization); | 90 std::move(client_request), |
| 91 base::MakeUnique<viz::DefaultLocalSurfaceIdProvider>(), |
| 92 enable_surface_synchronization); |
| 91 tree_->AttachCompositorFrameSink(root_window_id_, std::move(sink_request), | 93 tree_->AttachCompositorFrameSink(root_window_id_, std::move(sink_request), |
| 92 std::move(client)); | 94 std::move(client)); |
| 93 callback.Run(std::move(frame_sink)); | 95 callback.Run(std::move(frame_sink)); |
| 94 } | 96 } |
| 95 | 97 |
| 96 void RendererWindowTreeClient::DestroySelf() { | 98 void RendererWindowTreeClient::DestroySelf() { |
| 97 delete this; | 99 delete this; |
| 98 } | 100 } |
| 99 | 101 |
| 100 void RendererWindowTreeClient::OnEmbed( | 102 void RendererWindowTreeClient::OnEmbed( |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 bool success) {} | 268 bool success) {} |
| 267 | 269 |
| 268 void RendererWindowTreeClient::RequestClose(uint32_t window_id) {} | 270 void RendererWindowTreeClient::RequestClose(uint32_t window_id) {} |
| 269 | 271 |
| 270 void RendererWindowTreeClient::GetWindowManager( | 272 void RendererWindowTreeClient::GetWindowManager( |
| 271 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManager> internal) { | 273 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManager> internal) { |
| 272 NOTREACHED(); | 274 NOTREACHED(); |
| 273 } | 275 } |
| 274 | 276 |
| 275 } // namespace content | 277 } // namespace content |
| OLD | NEW |