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

Unified Diff: mandoline/ui/aura/surface_binding.h

Issue 1402213002: Moves mandoline/ui/aura to ui/views/mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: disable presubmit Created 5 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 | « mandoline/ui/aura/native_widget_view_manager.cc ('k') | mandoline/ui/aura/surface_binding.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/ui/aura/surface_binding.h
diff --git a/mandoline/ui/aura/surface_binding.h b/mandoline/ui/aura/surface_binding.h
deleted file mode 100644
index 840eebaf03923f57073d36c5126dfc887cf4a97a..0000000000000000000000000000000000000000
--- a/mandoline/ui/aura/surface_binding.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2015 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.
-
-#ifndef MANDOLINE_UI_AURA_SURFACE_BINDING_H_
-#define MANDOLINE_UI_AURA_SURFACE_BINDING_H_
-
-#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
-
-namespace cc {
-class OutputSurface;
-}
-
-namespace mojo {
-class Shell;
-}
-
-namespace mus {
-class View;
-}
-
-namespace mandoline {
-
-// SurfaceBinding is responsible for managing the connections necessary to
-// bind a View to the surfaces service.
-// Internally SurfaceBinding manages one connection (and related structures) per
-// ViewTreeConnection. That is, all Views from a particular ViewTreeConnection
-// share the same connection.
-class SurfaceBinding {
- public:
- SurfaceBinding(mojo::Shell* shell, mus::View* view);
- ~SurfaceBinding();
-
- // Creates an OutputSurface that renders to the View supplied to the
- // constructor.
- scoped_ptr<cc::OutputSurface> CreateOutputSurface();
-
- private:
- class PerConnectionState;
-
- mojo::Shell* shell_;
- mus::View* view_;
- scoped_refptr<PerConnectionState> state_;
-
- DISALLOW_COPY_AND_ASSIGN(SurfaceBinding);
-};
-
-} // namespace mandoline
-
-#endif // MANDOLINE_UI_AURA_SURFACE_BINDING_H_
« no previous file with comments | « mandoline/ui/aura/native_widget_view_manager.cc ('k') | mandoline/ui/aura/surface_binding.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698