cast_web_service_aura.cc 589 B

12345678910111213141516171819
  1. // Copyright 2019 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. #include "chromecast/browser/cast_web_service.h"
  5. #include <memory>
  6. #include "chromecast/browser/cast_content_window_aura.h"
  7. namespace chromecast {
  8. std::unique_ptr<CastContentWindow> CastWebService::CreateWindow(
  9. mojom::CastWebViewParamsPtr params) {
  10. return std::make_unique<CastContentWindowAura>(std::move(params),
  11. window_manager_);
  12. }
  13. } // namespace chromecast