diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-15 23:35:31 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-15 23:35:31 +0000 |
commit | a4dae8e1ef4fe6988bb63fcbe7184280f60e98e7 (patch) | |
tree | 8ca0f8a9bf392d37fa49ab114924441f91cfeecf /media/base/audio_decoder.h | |
parent | 89a985ca961f9e4bf90828f5415d3911db62a8a2 (diff) | |
download | chromium_src-a4dae8e1ef4fe6988bb63fcbe7184280f60e98e7.zip chromium_src-a4dae8e1ef4fe6988bb63fcbe7184280f60e98e7.tar.gz chromium_src-a4dae8e1ef4fe6988bb63fcbe7184280f60e98e7.tar.bz2 |
Callback renaming in media code.
This is a follow up CL of 125959.
- Rename AudioTimeCB and VideoTimeCB to TimeCB, as the context (VideoRenderer/AudioRenderer already provides clear context).
- Rename PipelineStatusCB callback variable names to status_cb if no names with specific meaning (e.g. seek_cb) are given.
- Rename foo_callback to foo_cb (except for media/audio/).
Note that media/audio also contains a lot of FooCallback types and foo_callback names. This will probably be addressed in another CL.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/9704046
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127028 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/audio_decoder.h')
-rw-r--r-- | media/base/audio_decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/base/audio_decoder.h b/media/base/audio_decoder.h index 3b41694..e435a1c 100644 --- a/media/base/audio_decoder.h +++ b/media/base/audio_decoder.h @@ -23,7 +23,7 @@ class MEDIA_EXPORT AudioDecoder // callback upon completion. // statistics_cb is used to update global pipeline statistics. virtual void Initialize(const scoped_refptr<DemuxerStream>& stream, - const PipelineStatusCB& callback, + const PipelineStatusCB& status_cb, const StatisticsCB& statistics_cb) = 0; // Request samples to be decoded and returned via the provided callback. |