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

Unified Diff: webkit/plugins/ppapi/ppapi_plugin_instance.h

Issue 11023004: Update PPP side of Pepper CDM API to support video decoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use DecryptAndDecodeFrame instead of DecryptAndDecodeVideo. Created 8 years, 3 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: webkit/plugins/ppapi/ppapi_plugin_instance.h
diff --git a/webkit/plugins/ppapi/ppapi_plugin_instance.h b/webkit/plugins/ppapi/ppapi_plugin_instance.h
index be8f76b264787c36abc4372bceb7ff56f35b4f96..ee67c191b686bb9975b7218947dd37f79d702ea1 100644
--- a/webkit/plugins/ppapi/ppapi_plugin_instance.h
+++ b/webkit/plugins/ppapi/ppapi_plugin_instance.h
@@ -261,9 +261,8 @@ class WEBKIT_PLUGINS_EXPORT PluginInstance :
bool CancelKeyRequest(const std::string& session_id);
bool Decrypt(const scoped_refptr<media::DecoderBuffer>& encrypted_buffer,
const media::Decryptor::DecryptCB& decrypt_cb);
- // TODO(xhwang): Update this when we need to support decrypt and decode.
ddorwin 2012/10/01 00:48:10 Is this TODO really done now? Does the new TODO in
Tom Finegan 2012/10/02 02:42:26 Not really... replaced TODO.
- bool DecryptAndDecode(
- const scoped_refptr<media::DecoderBuffer>& encrypted_buffer,
+ bool DecryptAndDecodeFrame(
+ const scoped_refptr<media::DecoderBuffer>& encrypted_frame,
const media::Decryptor::DecryptCB& decrypt_cb);
// There are 2 implementations of the fullscreen interface

Powered by Google App Engine
This is Rietveld 408576698