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

Unified Diff: services/ui/gpu/display_compositor/display_impl.cc

Issue 2441093002: Delete dead (and obsolete) display compositor API (Closed)
Patch Set: Created 4 years, 2 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 | « services/ui/gpu/display_compositor/display_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/gpu/display_compositor/display_impl.cc
diff --git a/services/ui/gpu/display_compositor/display_impl.cc b/services/ui/gpu/display_compositor/display_impl.cc
deleted file mode 100644
index 21e3082c128f5fb9b0d558d52a9bf48017c13e52..0000000000000000000000000000000000000000
--- a/services/ui/gpu/display_compositor/display_impl.cc
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "services/ui/gpu/display_compositor/display_impl.h"
-
-#include "services/ui/gpu/display_compositor/compositor_frame_sink_impl.h"
-
-namespace ui {
-namespace gpu {
-
-DisplayImpl::DisplayImpl(
- int accelerated_widget,
- mojo::InterfaceRequest<mojom::Display> display,
- mojom::DisplayHostPtr host,
- mojo::InterfaceRequest<mojom::CompositorFrameSink> sink,
- mojom::CompositorFrameSinkClientPtr client,
- const scoped_refptr<DisplayCompositor>& display_compositor)
- : binding_(this, std::move(display)) {
- const uint32_t client_id = 1;
- sink_.reset(new CompositorFrameSinkImpl(this, client_id, display_compositor,
- std::move(sink), std::move(client)));
-}
-
-DisplayImpl::~DisplayImpl() {}
-
-void DisplayImpl::CreateClient(
- uint32_t client_id,
- mojo::InterfaceRequest<mojom::DisplayClient> client) {
- NOTIMPLEMENTED();
-}
-
-void DisplayImpl::CompositorFrameSinkConnectionLost(int sink_id) {
- NOTIMPLEMENTED();
-}
-
-cc::SurfaceId DisplayImpl::GenerateSurfaceId() {
- NOTIMPLEMENTED();
- return cc::SurfaceId();
-}
-
-} // namespace gpu
-} // namespace ui
« no previous file with comments | « services/ui/gpu/display_compositor/display_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698