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

Unified Diff: content/renderer/media/crypto/ppapi_decryptor.cc

Issue 19744007: Create a public API around webkit::ppapi::PluginInstance and use it in chrome. After this, webkit/p… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/crypto/ppapi_decryptor.cc
===================================================================
--- content/renderer/media/crypto/ppapi_decryptor.cc (revision 213350)
+++ content/renderer/media/crypto/ppapi_decryptor.cc (working copy)
@@ -18,13 +18,13 @@
#include "media/base/video_decoder_config.h"
#include "media/base/video_frame.h"
#include "webkit/plugins/ppapi/content_decryptor_delegate.h"
-#include "webkit/plugins/ppapi/ppapi_plugin_instance.h"
+#include "webkit/plugins/ppapi/ppapi_plugin_instance_impl.h"
namespace content {
scoped_ptr<PpapiDecryptor> PpapiDecryptor::Create(
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,
@@ -47,7 +47,7 @@
}
PpapiDecryptor::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,

Powered by Google App Engine
This is Rietveld 408576698