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

Unified Diff: media/base/decryptor.h

Issue 11492003: Encrypted Media: Support Audio Decrypt-Only. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments mostly resolved (I believe); need to add/update tests if this looks good Created 8 years 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: media/base/decryptor.h
diff --git a/media/base/decryptor.h b/media/base/decryptor.h
index 87c275d7a845ea7d4447d7dcefac4bdbb61fab25..2fdcc5b42f9feb15e63105f4c817fbec0f95696f 100644
--- a/media/base/decryptor.h
+++ b/media/base/decryptor.h
@@ -204,6 +204,17 @@ class MEDIA_EXPORT Decryptor {
DISALLOW_COPY_AND_ASSIGN(Decryptor);
};
+// Callback to notify that a decryptor is ready.
+typedef base::Callback<void(Decryptor*)> DecryptorReadyCB;
+// Callback to request/cancel notification that a decryptor is ready.
+// Calling this callback with a non-null callback registers decryptor ready
+// notification. When the decryptor is ready, notification will be sent
+// through the provided callback.
+// Calling this callback with a null callback cancels previously registered
+// decryptor ready notification. Any previously provided callback will be
+// fired immediately with NULL.
+typedef base::Callback<void(const DecryptorReadyCB&)> SetDecryptorReadyCB;
+
} // namespace media
#endif // MEDIA_BASE_DECRYPTOR_H_
« no previous file with comments | « media/base/audio_renderer.h ('k') | media/base/pipeline.h » ('j') | media/base/pipeline.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698