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

Unified Diff: media/crypto/aes_decryptor.h

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
« no previous file with comments | « no previous file | media/crypto/aes_decryptor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/crypto/aes_decryptor.h
diff --git a/media/crypto/aes_decryptor.h b/media/crypto/aes_decryptor.h
index e838bdf95652d34ba3bfc750dc152bfb4ed58971..aec55d757d4a086243e5cad68daaea45fb257df1 100644
--- a/media/crypto/aes_decryptor.h
+++ b/media/crypto/aes_decryptor.h
@@ -29,8 +29,7 @@ class MEDIA_EXPORT AesDecryptor : public MediaKeys, public Decryptor {
public:
AesDecryptor(const KeyAddedCB& key_added_cb,
const KeyErrorCB& key_error_cb,
- const KeyMessageCB& key_message_cb,
- const NeedKeyCB& need_key_cb);
+ const KeyMessageCB& key_message_cb);
virtual ~AesDecryptor();
// MediaKeys implementation.
@@ -98,7 +97,6 @@ class MEDIA_EXPORT AesDecryptor : public MediaKeys, public Decryptor {
KeyAddedCB key_added_cb_;
KeyErrorCB key_error_cb_;
KeyMessageCB key_message_cb_;
- NeedKeyCB need_key_cb_;
// KeyMap owns the DecryptionKey* and must delete them when they are
// not needed any more.
« no previous file with comments | « no previous file | media/crypto/aes_decryptor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698