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

Unified Diff: webkit/media/crypto/ppapi_decryptor.h

Issue 11091005: Update PluginInstance for decrypt-and-decode video. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: resolve ddorwin's comments Created 8 years, 2 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/media/crypto/ppapi_decryptor.h
diff --git a/webkit/media/crypto/ppapi_decryptor.h b/webkit/media/crypto/ppapi_decryptor.h
index ff50017eb9b1d9ead134e0fe784c2a9a5abb43aa..75bdfd7afa930adadb5433d3c1ffa10035dba144 100644
--- a/webkit/media/crypto/ppapi_decryptor.h
+++ b/webkit/media/crypto/ppapi_decryptor.h
@@ -66,10 +66,13 @@ class PpapiDecryptor : public media::Decryptor {
void ReportFailureToCallPlugin(const std::string& key_system,
const std::string& session_id);
Tom Finegan 2012/10/15 21:26:30 nit: don't really need this blank line
ddorwin 2012/10/15 23:31:38 These are dissimilar functions I think, so spacing
xhwang 2012/10/16 00:20:24 Will keep the white line then.
+ void OnVideoDecoderInitialized(bool success);
+
media::DecryptorClient* client_;
scoped_refptr<webkit::ppapi::PluginInstance> cdm_plugin_;
scoped_refptr<base::MessageLoopProxy> render_loop_proxy_;
+ DecoderInitCB video_decoder_init_cb_;
KeyAddedCB key_added_cb_;
DISALLOW_COPY_AND_ASSIGN(PpapiDecryptor);

Powered by Google App Engine
This is Rietveld 408576698