Chromium Code Reviews| Index: media/base/decryptor.h |
| diff --git a/media/base/decryptor.h b/media/base/decryptor.h |
| index 2c2cf793639f05559b83e73e2cc8dece6780a770..10404ea2c4aa4a2fdd0e38f699c2ccda284db79b 100644 |
| --- a/media/base/decryptor.h |
| +++ b/media/base/decryptor.h |
| @@ -161,8 +161,9 @@ 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 notify that a decryptor is ready. base::Closure called when |
| +// complete. |
|
ddorwin
2014/07/30 22:35:46
When what is complete?
When the returned Decryptor
jrummell
2014/08/01 22:09:42
Done.
|
| +typedef base::Callback<void(Decryptor*, const base::Closure&)> DecryptorReadyCB; |
| // Callback to set/cancel a DecryptorReadyCB. |
| // Calling this callback with a non-null callback registers decryptor ready |