Index: media/base/stream_parser.h |
diff --git a/media/base/stream_parser.h b/media/base/stream_parser.h |
index cdf146d72a9b52994671788cc8cafad3798681f7..3ad3cd77839e62c21c7d8436abf325d21132f834 100644 |
--- a/media/base/stream_parser.h |
+++ b/media/base/stream_parser.h |
@@ -63,7 +63,7 @@ class MEDIA_EXPORT StreamParser { |
// Return value - True indicates that the initialization data is accepted. |
// False if something was wrong with the initialization data |
// and a parsing error should be signalled. |
- typedef base::Callback<bool(scoped_array<uint8>, int)> KeyNeededCB; |
+ typedef base::Callback<bool(scoped_array<uint8>, int)> NeedKeyCB; |
// Initialize the parser with necessary callbacks. Must be called before any |
// data is passed to Parse(). |init_cb| will be called once enough data has |
@@ -73,7 +73,7 @@ class MEDIA_EXPORT StreamParser { |
const NewConfigCB& config_cb, |
const NewBuffersCB& audio_cb, |
const NewBuffersCB& video_cb, |
- const KeyNeededCB& key_needed_cb, |
+ const NeedKeyCB& need_key_cb, |
const NewMediaSegmentCB& new_segment_cb) = 0; |
// Called when a seek occurs. This flushes the current parser state |