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

Unified Diff: chromecast/graphics/cast_window_manager_default.cc

Issue 2643553002: [Chromecast] Reuse the Aura window manager across receiver apps. (Closed)
Patch Set: applied reviewer feedback 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 | « chromecast/graphics/cast_window_manager_default.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/graphics/cast_window_manager_default.cc
diff --git a/chromecast/graphics/cast_window_manager_default.cc b/chromecast/graphics/cast_window_manager_default.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4c8559fc1ff9763d2506a3077d6cfeecc34d93d3
--- /dev/null
+++ b/chromecast/graphics/cast_window_manager_default.cc
@@ -0,0 +1,24 @@
+// Copyright 2017 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 "chromecast/graphics/cast_window_manager_default.h"
+
+#include "base/memory/ptr_util.h"
+
+namespace chromecast {
+
+// static
+std::unique_ptr<CastWindowManager> CastWindowManager::Create(
+ bool enable_input) {
+ return base::WrapUnique(new CastWindowManagerDefault());
+}
+
+CastWindowManagerDefault::CastWindowManagerDefault() {}
+
+CastWindowManagerDefault::~CastWindowManagerDefault() {}
+
+void CastWindowManagerDefault::TearDown() {}
+void CastWindowManagerDefault::AddWindow(gfx::NativeView window) {}
+
+} // namespace chromecast
« no previous file with comments | « chromecast/graphics/cast_window_manager_default.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698