Chromium Code Reviews| 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 |