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

Unified Diff: ui/aura/mus/window_port_mus.cc

Issue 2647363002: mus: Remove aura version of WindowCompositorFrameSink. (Closed)
Patch Set: tot merge Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/aura/mus/window_port_mus.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/mus/window_port_mus.cc
diff --git a/ui/aura/mus/window_port_mus.cc b/ui/aura/mus/window_port_mus.cc
index 9fd07109e726d6a783a17ac13239931f47300add..8fdf62b0de3c66c053ea0ab8b80a653273b4e9fd 100644
--- a/ui/aura/mus/window_port_mus.cc
+++ b/ui/aura/mus/window_port_mus.cc
@@ -73,14 +73,14 @@ void WindowPortMus::Embed(
window_tree_client_->Embed(window_, std::move(client), flags, callback);
}
-std::unique_ptr<WindowCompositorFrameSink>
+std::unique_ptr<ui::WindowCompositorFrameSink>
WindowPortMus::RequestCompositorFrameSink(
scoped_refptr<cc::ContextProvider> context_provider,
gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager) {
- std::unique_ptr<WindowCompositorFrameSinkBinding>
+ std::unique_ptr<ui::WindowCompositorFrameSinkBinding>
compositor_frame_sink_binding;
- std::unique_ptr<WindowCompositorFrameSink> compositor_frame_sink =
- WindowCompositorFrameSink::Create(
+ std::unique_ptr<ui::WindowCompositorFrameSink> compositor_frame_sink =
+ ui::WindowCompositorFrameSink::Create(
cc::FrameSinkId(server_id(), 0), std::move(context_provider),
gpu_memory_buffer_manager, &compositor_frame_sink_binding);
AttachCompositorFrameSink(std::move(compositor_frame_sink_binding));
@@ -88,13 +88,11 @@ WindowPortMus::RequestCompositorFrameSink(
}
void WindowPortMus::AttachCompositorFrameSink(
- std::unique_ptr<WindowCompositorFrameSinkBinding>
+ std::unique_ptr<ui::WindowCompositorFrameSinkBinding>
compositor_frame_sink_binding) {
window_tree_client_->AttachCompositorFrameSink(
- server_id(),
- std::move(compositor_frame_sink_binding->compositor_frame_sink_request_),
- mojo::MakeProxy(std::move(
- compositor_frame_sink_binding->compositor_frame_sink_client_)));
+ server_id(), compositor_frame_sink_binding->TakeFrameSinkRequest(),
+ mojo::MakeProxy(compositor_frame_sink_binding->TakeFrameSinkClient()));
}
WindowPortMus::ServerChangeIdType WindowPortMus::ScheduleChange(
« no previous file with comments | « ui/aura/mus/window_port_mus.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698