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

Unified Diff: webkit/plugins/ppapi/content_decryptor_delegate.cc

Issue 17309003: Removed unused NeedKey callback from Decryptors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase only Created 7 years, 6 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/content_decryptor_delegate.cc
diff --git a/webkit/plugins/ppapi/content_decryptor_delegate.cc b/webkit/plugins/ppapi/content_decryptor_delegate.cc
index f682c444d9c63c68368ae3d935cf2087b0967b44..c2dffc3d2aef5fa65c103330556fda4e3b19ea6e 100644
--- a/webkit/plugins/ppapi/content_decryptor_delegate.cc
+++ b/webkit/plugins/ppapi/content_decryptor_delegate.cc
@@ -294,12 +294,10 @@ void ContentDecryptorDelegate::Initialize(const std::string& key_system) {
void ContentDecryptorDelegate::SetKeyEventCallbacks(
const media::KeyAddedCB& key_added_cb,
const media::KeyErrorCB& key_error_cb,
- const media::KeyMessageCB& key_message_cb,
- const media::NeedKeyCB& need_key_cb) {
+ const media::KeyMessageCB& key_message_cb) {
key_added_cb_ = key_added_cb;
key_error_cb_ = key_error_cb;
key_message_cb_ = key_message_cb;
- need_key_cb_ = need_key_cb;
}
bool ContentDecryptorDelegate::GenerateKeyRequest(const std::string& type,
« no previous file with comments | « webkit/plugins/ppapi/content_decryptor_delegate.h ('k') | webkit/renderer/media/android/webmediaplayer_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698