OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chromecast/browser/media/cast_browser_cdm_factory.h" | 5 #include "chromecast/browser/media/cast_browser_cdm_factory.h" |
6 | 6 |
| 7 #include "chromecast/media/cdm/browser_cdm_cast.h" |
| 8 |
7 namespace chromecast { | 9 namespace chromecast { |
8 namespace media { | 10 namespace media { |
9 | 11 |
10 scoped_ptr< ::media::BrowserCdm> CreatePlatformBrowserCdm( | 12 scoped_ptr<BrowserCdmCast> CreatePlatformBrowserCdm( |
11 const CastKeySystem& key_system, | 13 const CastKeySystem& key_system) { |
12 const ::media::SessionMessageCB& session_message_cb, | 14 return scoped_ptr<BrowserCdmCast>(); |
13 const ::media::SessionClosedCB& session_closed_cb, | |
14 const ::media::SessionErrorCB& session_error_cb, | |
15 const ::media::SessionKeysChangeCB& session_keys_change_cb, | |
16 const ::media::SessionExpirationUpdateCB& session_expiration_update_cb) { | |
17 return scoped_ptr< ::media::BrowserCdm>(); | |
18 } | 15 } |
19 | 16 |
20 } // namespace media | 17 } // namespace media |
21 } // namespace chromecast | 18 } // namespace chromecast |
OLD | NEW |