OLD | NEW |
(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::TearDown() {} |
| 22 void CastWindowManagerDefault::AddWindow(gfx::NativeView window) {} |
| 23 |
| 24 } // namespace chromecast |
OLD | NEW |