| Index: content/renderer/media/crypto/ppapi_decryptor.h
|
| ===================================================================
|
| --- content/renderer/media/crypto/ppapi_decryptor.h (revision 213350)
|
| +++ content/renderer/media/crypto/ppapi_decryptor.h (working copy)
|
| @@ -22,7 +22,7 @@
|
| namespace webkit {
|
| namespace ppapi {
|
| class ContentDecryptorDelegate;
|
| -class PluginInstance;
|
| +class PluginInstanceImpl;
|
| }
|
| }
|
|
|
| @@ -36,7 +36,7 @@
|
| static scoped_ptr<PpapiDecryptor> Create(
|
| // TODO(ddorwin): Remove after updating the delegate.
|
| const std::string& key_system,
|
| - const scoped_refptr<webkit::ppapi::PluginInstance>& plugin_instance,
|
| + const scoped_refptr<webkit::ppapi::PluginInstanceImpl>& plugin_instance,
|
| const media::KeyAddedCB& key_added_cb,
|
| const media::KeyErrorCB& key_error_cb,
|
| const media::KeyMessageCB& key_message_cb,
|
| @@ -76,7 +76,7 @@
|
|
|
| private:
|
| PpapiDecryptor(
|
| - const scoped_refptr<webkit::ppapi::PluginInstance>& plugin_instance,
|
| + const scoped_refptr<webkit::ppapi::PluginInstanceImpl>& plugin_instance,
|
| webkit::ppapi::ContentDecryptorDelegate* plugin_cdm_delegate,
|
| const media::KeyAddedCB& key_added_cb,
|
| const media::KeyErrorCB& key_error_cb,
|
| @@ -99,7 +99,7 @@
|
| // Hold a reference of the plugin instance to make sure the plugin outlives
|
| // the |plugin_cdm_delegate_|. This is needed because |plugin_cdm_delegate_|
|
| // is owned by the |plugin_instance_|.
|
| - scoped_refptr<webkit::ppapi::PluginInstance> plugin_instance_;
|
| + scoped_refptr<webkit::ppapi::PluginInstanceImpl> plugin_instance_;
|
|
|
| webkit::ppapi::ContentDecryptorDelegate* plugin_cdm_delegate_;
|
|
|
|
|