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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chromecast/graphics/cast_window_manager_default.h"
6
7 #include "base/memory/ptr_util.h"
8
9 namespace chromecast {
10
11 // static
12 std::unique_ptr<CastWindowManager> CastWindowManager::Create(
13 bool enable_input) {
14 return base::WrapUnique(new CastWindowManagerDefault());
15 }
16
17 CastWindowManagerDefault::CastWindowManagerDefault() {}
18
19 CastWindowManagerDefault::~CastWindowManagerDefault() {}
20
21 void CastWindowManagerDefault::Setup() {}
22 void CastWindowManagerDefault::TearDown() {}
23 void CastWindowManagerDefault::AddWindow(gfx::NativeView window) {}
24 void CastWindowManagerDefault::AddAndShowWindow(gfx::NativeView window) {}
25
26 } // namespace chromecast
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698