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

Unified Diff: services/ui/public/cpp/window_tree_client.cc

Issue 2617403003: Mus: Remove CompositorFrameSinkType (Closed)
Patch Set: Remove remaining CompositorFrameSinkType 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
Index: services/ui/public/cpp/window_tree_client.cc
diff --git a/services/ui/public/cpp/window_tree_client.cc b/services/ui/public/cpp/window_tree_client.cc
index e0dbb98249b539bd68c5f59d29224ca92394475b..78c612921f44059f0b85d1bfe259953649bb8413 100644
--- a/services/ui/public/cpp/window_tree_client.cc
+++ b/services/ui/public/cpp/window_tree_client.cc
@@ -395,12 +395,11 @@ void WindowTreeClient::RequestClose(Window* window) {
void WindowTreeClient::AttachCompositorFrameSink(
Id window_id,
- mojom::CompositorFrameSinkType type,
cc::mojom::MojoCompositorFrameSinkRequest compositor_frame_sink,
cc::mojom::MojoCompositorFrameSinkClientPtr client) {
DCHECK(tree_);
- tree_->AttachCompositorFrameSink(
- window_id, type, std::move(compositor_frame_sink), std::move(client));
+ tree_->AttachCompositorFrameSink(window_id, std::move(compositor_frame_sink),
+ std::move(client));
}
void WindowTreeClient::LocalSetCapture(Window* window) {

Powered by Google App Engine
This is Rietveld 408576698