OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef MEDIA_BASE_BROWSER_CDM_FACTORY_ANDROID_H_ | |
6 #define MEDIA_BASE_BROWSER_CDM_FACTORY_ANDROID_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "media/base/browser_cdm_factory.h" | |
10 #include "media/base/media_export.h" | |
11 | |
12 namespace media { | |
13 | |
14 class MEDIA_EXPORT BrowserCdmFactoryAndroid : public BrowserCdmFactory { | |
15 public: | |
16 BrowserCdmFactoryAndroid() {} | |
17 ~BrowserCdmFactoryAndroid() final {}; | |
18 | |
19 scoped_refptr<MediaKeys> CreateBrowserCdm( | |
20 const std::string& key_system, | |
21 bool use_hw_secure_codecs, | |
22 const SessionMessageCB& session_message_cb, | |
23 const SessionClosedCB& session_closed_cb, | |
24 const LegacySessionErrorCB& legacy_session_error_cb, | |
25 const SessionKeysChangeCB& session_keys_change_cb, | |
26 const SessionExpirationUpdateCB& session_expiration_update_cb) final; | |
27 | |
28 private: | |
29 DISALLOW_COPY_AND_ASSIGN(BrowserCdmFactoryAndroid); | |
30 }; | |
31 | |
32 } // namespace media | |
33 | |
34 #endif // MEDIA_BASE_BROWSER_CDM_FACTORY_ANDROID_H_ | |
OLD | NEW |