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

Unified Diff: media/filters/chunk_demuxer_client.h

Issue 10534096: Generalize AesDecryptor to make it more spec compliant. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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: media/filters/chunk_demuxer_client.h
diff --git a/media/filters/chunk_demuxer_client.h b/media/filters/chunk_demuxer_client.h
index 3fbe6e351d00e5705cd26e0a44595400e95cf57f..6ba90fcc5dcac997b81e1d7fd72479fed1a89cfb 100644
--- a/media/filters/chunk_demuxer_client.h
+++ b/media/filters/chunk_demuxer_client.h
@@ -15,6 +15,8 @@ class ChunkDemuxer;
// is opened & closed.
class ChunkDemuxerClient {
public:
+ virtual ~ChunkDemuxerClient() {}
ddorwin 2012/06/11 21:02:40 Same (private)
xhwang 2012/06/12 19:01:15 Done.
+
// Called when a ChunkDemuxer object is opened.
virtual void DemuxerOpened(ChunkDemuxer* demuxer) = 0;
@@ -25,7 +27,8 @@ class ChunkDemuxerClient {
// A decryption key associated with |init_data| may be needed to decrypt the
// media being demuxed before decoding. Note that the demuxing itself does not
// need decryption.
- virtual void KeyNeeded(scoped_array<uint8> init_data, int init_data_size) = 0;
+ virtual void DemuxerKeyNeeded(scoped_array<uint8> init_data,
ddorwin 2012/06/11 21:02:40 Same (name)
xhwang 2012/06/12 19:01:15 Done.
+ int init_data_size) = 0;
};
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698