Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Side by Side Diff: media/base/android/browser_cdm_factory_android.h

Issue 1341883003: Prepare MediaDrmBridge to work with MediaCodecPlayer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bug526755
Patch Set: Fixed MediaDrmBridgeTest unit tests Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/base/android/BUILD.gn ('k') | media/base/android/browser_cdm_factory_android.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 scoped_ptr<BrowserCdm> 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 const SessionMessageCB& session_message_cb, 22 const SessionMessageCB& session_message_cb,
23 const SessionClosedCB& session_closed_cb, 23 const SessionClosedCB& session_closed_cb,
24 const LegacySessionErrorCB& legacy_session_error_cb, 24 const LegacySessionErrorCB& legacy_session_error_cb,
25 const SessionKeysChangeCB& session_keys_change_cb, 25 const SessionKeysChangeCB& session_keys_change_cb,
26 const SessionExpirationUpdateCB& session_expiration_update_cb) final; 26 const SessionExpirationUpdateCB& session_expiration_update_cb) final;
27 27
28 private: 28 private:
29 DISALLOW_COPY_AND_ASSIGN(BrowserCdmFactoryAndroid); 29 DISALLOW_COPY_AND_ASSIGN(BrowserCdmFactoryAndroid);
30 }; 30 };
31 31
32 } // namespace media 32 } // namespace media
33 33
34 #endif // MEDIA_BASE_BROWSER_CDM_FACTORY_ANDROID_H_ 34 #endif // MEDIA_BASE_BROWSER_CDM_FACTORY_ANDROID_H_
OLDNEW
« no previous file with comments | « media/base/android/BUILD.gn ('k') | media/base/android/browser_cdm_factory_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698