OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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/browser/cast_window_manager.h" |
| 6 |
| 7 namespace chromecast { |
| 8 namespace shell { |
| 9 |
| 10 CastWindowManager::CastWindowManager() { } |
| 11 |
| 12 CastWindowManager::~CastWindowManager() { } |
| 13 |
| 14 void CastWindowManager::StartWindowManager() { } |
| 15 |
| 16 void CastWindowManager::AddWebContents(content::WebContents* web_contents, |
| 17 bool is_overlay, bool is_transparent) { } |
| 18 |
| 19 } // namespace shell |
| 20 } // namespace chromecast |
OLD | NEW |