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

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

Issue 1408793009: media: Remove BrowserCdmFactory inferface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: real changes Created 5 years, 1 month 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698