| 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/media/mojo/cast_media_application.h" |
| 6 |
| 7 namespace chromecast { |
| 8 namespace media { |
| 9 |
| 10 CastMediaClient::CastMediaClient() {} |
| 11 |
| 12 CastMediaClient::~CastMediaClient() {} |
| 13 |
| 14 void CastMediaClient::Initialize() {} |
| 15 |
| 16 scoped_ptr<::media::RendererFactory> CastMediaClient::CreateRendererFactory( |
| 17 const scoped_refptr<::media::MediaLog>& media_log) { |
| 18 return scoped_ptr<::media::RendererFactory>(); |
| 19 } |
| 20 |
| 21 } // namespace media |
| 22 } // namespace chromecast |
| OLD | NEW |