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

Unified Diff: content/renderer/media/rtc_video_decoder_unittest.cc

Issue 8686010: <video> decode in hardware! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Drop INTRA/CONSTRAINED in profile, add missing 'virtual', add MEDIA_EXPORT, fix RemoveFilter loop Created 9 years 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
Index: content/renderer/media/rtc_video_decoder_unittest.cc
diff --git a/content/renderer/media/rtc_video_decoder_unittest.cc b/content/renderer/media/rtc_video_decoder_unittest.cc
index 73d2bb46ecf6487dcecde95179a0826e89f056f4..039fc94ad6029849ca241e1db63a14d9384314af 100644
--- a/content/renderer/media/rtc_video_decoder_unittest.cc
+++ b/content/renderer/media/rtc_video_decoder_unittest.cc
@@ -34,6 +34,7 @@ using media::MockStatisticsCallback;
using media::MockVideoRenderer;
using media::MockFilterHost;
using media::NewExpectedClosure;
+using media::NewExpectedStatusCB;
using media::PipelineStatistics;
using media::PIPELINE_OK;
using media::StatisticsCallback;
@@ -132,8 +133,8 @@ class RTCVideoDecoderTest : public testing::Test {
void InitializeDecoderSuccessfully() {
// Test successful initialization.
- decoder_->Initialize(NULL,
- NewExpectedClosure(), NewStatisticsCallback());
+ decoder_->Initialize(
+ NULL, NewExpectedStatusCB(PIPELINE_OK), NewStatisticsCallback());
message_loop_.RunAllPending();
}

Powered by Google App Engine
This is Rietveld 408576698