Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: content/renderer/mus/renderer_window_tree_client.cc

Issue 2903853002: Make RendererCompositorFrameSink derive from ClientCompositorFrameSink (Closed)
Patch Set: Add comments Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/gpu/renderer_compositor_frame_sink.cc ('k') | ui/aura/mus/window_port_mus.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager, 77 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
78 const CompositorFrameSinkCallback& callback) { 78 const CompositorFrameSinkCallback& callback) {
79 cc::mojom::MojoCompositorFrameSinkPtrInfo sink_info; 79 cc::mojom::MojoCompositorFrameSinkPtrInfo sink_info;
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), gpu_memory_buffer_manager, 87 std::move(context_provider), nullptr /* worker_context_provider */,
88 std::move(sink_info), std::move(client_request), 88 gpu_memory_buffer_manager, nullptr /* shared_bitmap_manager */,
89 enable_surface_synchronization); 89 nullptr /* synthetic_begin_frame_source */, std::move(sink_info),
90 std::move(client_request), enable_surface_synchronization);
90 tree_->AttachCompositorFrameSink(root_window_id_, std::move(sink_request), 91 tree_->AttachCompositorFrameSink(root_window_id_, std::move(sink_request),
91 std::move(client)); 92 std::move(client));
92 callback.Run(std::move(frame_sink)); 93 callback.Run(std::move(frame_sink));
93 } 94 }
94 95
95 void RendererWindowTreeClient::DestroySelf() { 96 void RendererWindowTreeClient::DestroySelf() {
96 delete this; 97 delete this;
97 } 98 }
98 99
99 void RendererWindowTreeClient::OnEmbed( 100 void RendererWindowTreeClient::OnEmbed(
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 bool success) {} 261 bool success) {}
261 262
262 void RendererWindowTreeClient::RequestClose(uint32_t window_id) {} 263 void RendererWindowTreeClient::RequestClose(uint32_t window_id) {}
263 264
264 void RendererWindowTreeClient::GetWindowManager( 265 void RendererWindowTreeClient::GetWindowManager(
265 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManager> internal) { 266 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManager> internal) {
266 NOTREACHED(); 267 NOTREACHED();
267 } 268 }
268 269
269 } // namespace content 270 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/gpu/renderer_compositor_frame_sink.cc ('k') | ui/aura/mus/window_port_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698