cast_browser_main_parts_simple.cc 534 B

1234567891011121314151617
  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. #include "chromecast/browser/cast_browser_main_parts.h"
  5. namespace chromecast {
  6. namespace shell {
  7. // static
  8. std::unique_ptr<CastBrowserMainParts> CastBrowserMainParts::Create(
  9. CastContentBrowserClient* cast_content_browser_client) {
  10. return std::make_unique<CastBrowserMainParts>(cast_content_browser_client);
  11. }
  12. } // namespace shell
  13. } // namespace chromecast