cast_content_renderer_client_simple.cc 528 B

1234567891011121314151617181920
  1. // Copyright 2015 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/renderer/cast_content_renderer_client.h"
  5. #include <memory>
  6. #include "base/memory/ptr_util.h"
  7. namespace chromecast {
  8. namespace shell {
  9. // static
  10. std::unique_ptr<CastContentRendererClient> CastContentRendererClient::Create() {
  11. return base::WrapUnique(new CastContentRendererClient());
  12. }
  13. } // namespace shell
  14. } // namespace chromecast