OLD | NEW |
---|---|
(Empty) | |
1 // 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.
| |
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 | |
OLD | NEW |