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

Side by Side Diff: media/blink/null_encrypted_media_player_support.h

Issue 594713002: Pass initial CDM to CreateMediaPlayer() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes for android + mojo Created 6 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
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_BLINK_NULL_ENCRYPTED_MEDIA_PLAYER_SUPPORT_H_ 5 #ifndef MEDIA_BLINK_NULL_ENCRYPTED_MEDIA_PLAYER_SUPPORT_H_
6 #define MEDIA_BLINK_NULL_ENCRYPTED_MEDIA_PLAYER_SUPPORT_H_ 6 #define MEDIA_BLINK_NULL_ENCRYPTED_MEDIA_PLAYER_SUPPORT_H_
7 7
8 #include "media/base/media_export.h" 8 #include "media/base/media_export.h"
9 #include "media/blink/encrypted_media_player_support.h" 9 #include "media/blink/encrypted_media_player_support.h"
10 10
(...skipping 24 matching lines...) Expand all
35 const unsigned char* init_data, 35 const unsigned char* init_data,
36 unsigned init_data_length, 36 unsigned init_data_length,
37 const blink::WebString& session_id) OVERRIDE; 37 const blink::WebString& session_id) OVERRIDE;
38 38
39 virtual blink::WebMediaPlayer::MediaKeyException CancelKeyRequest( 39 virtual blink::WebMediaPlayer::MediaKeyException CancelKeyRequest(
40 const blink::WebString& key_system, 40 const blink::WebString& key_system,
41 const blink::WebString& session_id) OVERRIDE; 41 const blink::WebString& session_id) OVERRIDE;
42 42
43 43
44 // Unprefixed API methods. 44 // Unprefixed API methods.
45 virtual void SetInitialContentDecryptionModule(
46 blink::WebContentDecryptionModule* initial_cdm) OVERRIDE;
45 virtual void SetContentDecryptionModule( 47 virtual void SetContentDecryptionModule(
46 blink::WebContentDecryptionModule* cdm) OVERRIDE; 48 blink::WebContentDecryptionModule* cdm) OVERRIDE;
47 virtual void SetContentDecryptionModule( 49 virtual void SetContentDecryptionModule(
48 blink::WebContentDecryptionModule* cdm, 50 blink::WebContentDecryptionModule* cdm,
49 blink::WebContentDecryptionModuleResult result) OVERRIDE; 51 blink::WebContentDecryptionModuleResult result) OVERRIDE;
50 virtual void SetContentDecryptionModuleSync(
51 blink::WebContentDecryptionModule* cdm) OVERRIDE;
52 52
53 53
54 // Callback factory and notification methods used by WebMediaPlayerImpl. 54 // Callback factory and notification methods used by WebMediaPlayerImpl.
55 55
56 // Creates a callback that Demuxers can use to signal that the content 56 // Creates a callback that Demuxers can use to signal that the content
57 // requires a key. This method makes sure the callback returned can be safely 57 // requires a key. This method makes sure the callback returned can be safely
58 // invoked from any thread. 58 // invoked from any thread.
59 virtual Demuxer::NeedKeyCB CreateNeedKeyCB() OVERRIDE; 59 virtual Demuxer::NeedKeyCB CreateNeedKeyCB() OVERRIDE;
60 60
61 // Creates a callback that renderers can use to set decryptor 61 // Creates a callback that renderers can use to set decryptor
62 // ready callback. This method makes sure the callback returned can be safely 62 // ready callback. This method makes sure the callback returned can be safely
63 // invoked from any thread. 63 // invoked from any thread.
64 virtual SetDecryptorReadyCB CreateSetDecryptorReadyCB() OVERRIDE; 64 virtual SetDecryptorReadyCB CreateSetDecryptorReadyCB() OVERRIDE;
65 65
66 // Called to inform this object that the media pipeline encountered 66 // Called to inform this object that the media pipeline encountered
67 // and handled a decryption error. 67 // and handled a decryption error.
68 virtual void OnPipelineDecryptError() OVERRIDE; 68 virtual void OnPipelineDecryptError() OVERRIDE;
69 69
70 private: 70 private:
71 NullEncryptedMediaPlayerSupport(); 71 NullEncryptedMediaPlayerSupport();
72 72
73 DISALLOW_COPY_AND_ASSIGN(NullEncryptedMediaPlayerSupport); 73 DISALLOW_COPY_AND_ASSIGN(NullEncryptedMediaPlayerSupport);
74 }; 74 };
75 75
76 } // namespace media 76 } // namespace media
77 77
78 #endif // MEDIA_BLINK_NULL_ENCRYPTED_MEDIA_PLAYER_SUPPORT_H_ 78 #endif // MEDIA_BLINK_NULL_ENCRYPTED_MEDIA_PLAYER_SUPPORT_H_
OLDNEW
« no previous file with comments | « media/blink/encrypted_media_player_support.h ('k') | media/blink/null_encrypted_media_player_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698