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

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: Rebase 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
« no previous file with comments | « media/filters/chunk_demuxer.cc ('k') | media/filters/chunk_demuxer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..4ac2f78e08e19577dd1f6b179190716279fa0425 100644
--- a/media/filters/chunk_demuxer_client.h
+++ b/media/filters/chunk_demuxer_client.h
@@ -25,7 +25,11 @@ 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 DemuxerNeedKey(scoped_array<uint8> init_data,
+ int init_data_size) = 0;
+
+ protected:
+ virtual ~ChunkDemuxerClient() {}
};
} // namespace media
« no previous file with comments | « media/filters/chunk_demuxer.cc ('k') | media/filters/chunk_demuxer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698