| Index: webkit/media/webmediaplayer_impl.h
|
| diff --git a/webkit/media/webmediaplayer_impl.h b/webkit/media/webmediaplayer_impl.h
|
| index c19e00650251e948868c24e6e66f41d8cf59c3f4..376c10f152816326b9e42245d03d1f6160a2be4c 100644
|
| --- a/webkit/media/webmediaplayer_impl.h
|
| +++ b/webkit/media/webmediaplayer_impl.h
|
| @@ -64,6 +64,8 @@
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebAudioSourceProvider.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayer.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerClient.h"
|
| +#include "webkit/media/crypto/key_systems.h"
|
| +#include "webkit/media/crypto/proxy_decryptor.h"
|
|
|
| class RenderAudioSourceProvider;
|
|
|
| @@ -292,8 +294,9 @@ class WebMediaPlayerImpl
|
| scoped_refptr<media::Pipeline> pipeline_;
|
| bool started_;
|
|
|
| - // The decryptor that manages decryption keys and decrypts encrypted frames.
|
| - scoped_ptr<media::Decryptor> decryptor_;
|
| + // The currently selected key system. Empty string means that no key system
|
| + // has been selected.
|
| + WebKit::WebString current_key_system_;
|
|
|
| scoped_ptr<media::MessageLoopFactory> message_loop_factory_;
|
|
|
| @@ -339,6 +342,9 @@ class WebMediaPlayerImpl
|
|
|
| bool is_local_source_;
|
|
|
| + // The decryptor that manages decryption keys and decrypts encrypted frames.
|
| + ProxyDecryptor decryptor_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl);
|
| };
|
|
|
|
|