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 #ifndef MEDIA_BASE_BROWSER_CDM_FACTORY_ANDROID_H_ | 5 #ifndef MEDIA_BASE_BROWSER_CDM_FACTORY_ANDROID_H_ |
6 #define MEDIA_BASE_BROWSER_CDM_FACTORY_ANDROID_H_ | 6 #define MEDIA_BASE_BROWSER_CDM_FACTORY_ANDROID_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "media/base/browser_cdm_factory.h" | 9 #include "media/base/browser_cdm_factory.h" |
10 #include "media/base/media_export.h" | 10 #include "media/base/media_export.h" |
11 | 11 |
12 namespace media { | 12 namespace media { |
13 | 13 |
14 class MEDIA_EXPORT BrowserCdmFactoryAndroid : public BrowserCdmFactory { | 14 class MEDIA_EXPORT BrowserCdmFactoryAndroid : public BrowserCdmFactory { |
15 public: | 15 public: |
16 BrowserCdmFactoryAndroid() {} | 16 BrowserCdmFactoryAndroid() {} |
17 ~BrowserCdmFactoryAndroid() final {}; | 17 ~BrowserCdmFactoryAndroid() final {}; |
18 | 18 |
19 ScopedBrowserCdmPtr CreateBrowserCdm( | 19 ScopedBrowserCdmPtr CreateBrowserCdm( |
20 const std::string& key_system, | 20 const std::string& key_system, |
21 bool use_hw_secure_codecs, | 21 bool use_hw_secure_codecs, |
22 scoped_ptr<ProvisionFetcher> provision_fetcher, | |
xhwang
2015/11/06 23:08:19
See comment above. ProvisionFetcher is specific to
Tima Vaisburd
2015/11/11 03:03:34
Done.
| |
22 const SessionMessageCB& session_message_cb, | 23 const SessionMessageCB& session_message_cb, |
23 const SessionClosedCB& session_closed_cb, | 24 const SessionClosedCB& session_closed_cb, |
24 const LegacySessionErrorCB& legacy_session_error_cb, | 25 const LegacySessionErrorCB& legacy_session_error_cb, |
25 const SessionKeysChangeCB& session_keys_change_cb, | 26 const SessionKeysChangeCB& session_keys_change_cb, |
26 const SessionExpirationUpdateCB& session_expiration_update_cb) final; | 27 const SessionExpirationUpdateCB& session_expiration_update_cb) final; |
27 | 28 |
28 private: | 29 private: |
29 DISALLOW_COPY_AND_ASSIGN(BrowserCdmFactoryAndroid); | 30 DISALLOW_COPY_AND_ASSIGN(BrowserCdmFactoryAndroid); |
30 }; | 31 }; |
31 | 32 |
32 } // namespace media | 33 } // namespace media |
33 | 34 |
34 #endif // MEDIA_BASE_BROWSER_CDM_FACTORY_ANDROID_H_ | 35 #endif // MEDIA_BASE_BROWSER_CDM_FACTORY_ANDROID_H_ |
OLD | NEW |