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

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

Issue 15772012: Separate MediaKeys interface from Decryptor interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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.cc
diff --git a/webkit/media/crypto/ppapi_decryptor.cc b/webkit/media/crypto/ppapi_decryptor.cc
index 7f45178ca6a88dc73a6f3d314debed7bfafd625e..8cad8a339bdd18f1d2d833ed0b13f672d5f4443d 100644
--- a/webkit/media/crypto/ppapi_decryptor.cc
+++ b/webkit/media/crypto/ppapi_decryptor.cc
@@ -264,7 +264,7 @@ void PpapiDecryptor::KeyAdded(const std::string& key_system,
void PpapiDecryptor::KeyError(const std::string& key_system,
ddorwin 2013/05/24 20:39:12 Why do we need a proxy for key_error_cb_? Is it ju
xhwang 2013/05/24 23:15:56 We don't like to have callbacks jump layers, i.e.
const std::string& session_id,
- media::Decryptor::KeyError error_code,
+ media::MediaKeys::KeyError error_code,
int system_code) {
DCHECK(render_loop_proxy_->BelongsToCurrentThread());
key_error_cb_.Run(key_system, session_id, error_code, system_code);

Powered by Google App Engine
This is Rietveld 408576698