summaryrefslogtreecommitdiffstats
path: root/webkit/media/buffered_data_source.h
diff options
context:
space:
mode:
authorxhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-10 00:38:57 +0000
committerxhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-10 00:38:57 +0000
commitad8b08d05ff4448a2c0a0dcf6fa95e8c6843c599 (patch)
tree74f61803725d85c934d911e1c0cfa80e275919dc /webkit/media/buffered_data_source.h
parent49c33c2ddfe099c027bd76a172c65e28f1442bfb (diff)
downloadchromium_src-ad8b08d05ff4448a2c0a0dcf6fa95e8c6843c599.zip
chromium_src-ad8b08d05ff4448a2c0a0dcf6fa95e8c6843c599.tar.gz
chromium_src-ad8b08d05ff4448a2c0a0dcf6fa95e8c6843c599.tar.bz2
Rename StatisticsCallback to StatisticsCB and DataSource::ReadCallback to ReadCB.
To comply with naming convention in media code. Renaming only, no other changes. In rtc_video_decoder.cc, explicitly use media::VideoFrame so not to confuse with cricket::VideoFrame. BUG=none TEST=none Review URL: http://codereview.chromium.org/9634012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125959 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/media/buffered_data_source.h')
-rw-r--r--webkit/media/buffered_data_source.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/media/buffered_data_source.h b/webkit/media/buffered_data_source.h
index 58e1ea6..331a63b 100644
--- a/webkit/media/buffered_data_source.h
+++ b/webkit/media/buffered_data_source.h
@@ -40,7 +40,7 @@ class BufferedDataSource : public WebDataSource {
int64 position,
size_t size,
uint8* data,
- const media::DataSource::ReadCallback& read_cb) OVERRIDE;
+ const media::DataSource::ReadCB& read_cb) OVERRIDE;
virtual bool GetSize(int64* size_out) OVERRIDE;
virtual bool IsStreaming() OVERRIDE;
virtual void SetPreload(media::Preload preload) OVERRIDE;
@@ -151,7 +151,7 @@ class BufferedDataSource : public WebDataSource {
media::PipelineStatusCB initialize_cb_;
// Read parameters received from the Read() method call.
- media::DataSource::ReadCallback read_cb_;
+ media::DataSource::ReadCB read_cb_;
int64 read_position_;
int read_size_;
uint8* read_buffer_;