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

Unified Diff: chromecast/graphics/cast_window_manager_default.cc

Issue 2643553002: [Chromecast] Reuse the Aura window manager across receiver apps. (Closed)
Patch Set: fix unit tests 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: 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..644679d9ce9a6bd420df6f2b6a9cd4818069f4ae
--- /dev/null
+++ b/chromecast/graphics/cast_window_manager_default.cc
@@ -0,0 +1,26 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
derekjchow1 2017/01/18 02:49:13 2017
Joshua LeVasseur 2017/01/18 18:26:35 Done.
+// 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::Setup() {}
+void CastWindowManagerDefault::TearDown() {}
+void CastWindowManagerDefault::AddWindow(gfx::NativeView window) {}
+void CastWindowManagerDefault::AddAndShowWindow(gfx::NativeView window) {}
+
+} // namespace chromecast

Powered by Google App Engine
This is Rietveld 408576698