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

Unified Diff: media/filters/video_renderer_base_unittest.cc

Issue 20136002: Reland r212023 "Rename VideoDecoder::ReadCB to VideoDecoder::DecodeCB." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix content_browsertests failure. Created 7 years, 5 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/video_renderer_base.cc ('k') | media/filters/vpx_video_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/video_renderer_base_unittest.cc
diff --git a/media/filters/video_renderer_base_unittest.cc b/media/filters/video_renderer_base_unittest.cc
index 75bd5339e3cabcb9ea7b5977d8e9944e80eb13a7..84d356dae176541d6053ba6f450328c526450357 100644
--- a/media/filters/video_renderer_base_unittest.cc
+++ b/media/filters/video_renderer_base_unittest.cc
@@ -314,7 +314,7 @@ class VideoRendererBaseTest : public ::testing::Test {
}
void FrameRequested(const scoped_refptr<DecoderBuffer>& buffer,
- const VideoDecoder::ReadCB& read_cb) {
+ const VideoDecoder::DecodeCB& read_cb) {
DCHECK_EQ(&message_loop_, base::MessageLoop::current());
CHECK(read_cb_.is_null());
read_cb_ = read_cb;
@@ -359,7 +359,7 @@ class VideoRendererBaseTest : public ::testing::Test {
scoped_refptr<VideoFrame> current_frame_;
// Used for satisfying reads.
- VideoDecoder::ReadCB read_cb_;
+ VideoDecoder::DecodeCB read_cb_;
base::TimeDelta next_frame_timestamp_;
base::TimeDelta duration_;
« no previous file with comments | « media/filters/video_renderer_base.cc ('k') | media/filters/vpx_video_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698