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

Unified Diff: media/cast/test/encode_decode_test.cc

Issue 109413004: Cast:Adding cast_transport_config and cleaning up (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updating chrome/renderer Created 7 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: media/cast/test/encode_decode_test.cc
diff --git a/media/cast/test/encode_decode_test.cc b/media/cast/test/encode_decode_test.cc
index 170e5f267794e307b479592baa0c8ca09bd6fbf3..3bc13b3830ef4c962297f2da2c7989cc78ca26a0 100644
--- a/media/cast/test/encode_decode_test.cc
+++ b/media/cast/test/encode_decode_test.cc
@@ -77,7 +77,8 @@ class EncodeDecodeTest : public ::testing::Test {
// CastEnvironment will only be used by the vp8 decoder; Enable only the
// video decoder and main threads.
cast_environment_(new CastEnvironment(&testing_clock_, task_runner_,
- NULL, NULL, NULL, task_runner_, GetDefaultCastLoggingConfig())),
+ NULL, NULL, NULL, task_runner_, NULL,
+ GetDefaultCastLoggingConfig())),
test_callback_(new EncodeDecodeTestFrameCallback()) {
testing_clock_.Advance(
base::TimeDelta::FromMilliseconds(kStartMillisecond));
@@ -118,7 +119,7 @@ class EncodeDecodeTest : public ::testing::Test {
};
TEST_F(EncodeDecodeTest, BasicEncodeDecode) {
- EncodedVideoFrame encoded_frame;
+ transport::EncodedVideoFrame encoded_frame;
// Encode frame.
encoder_->Encode(video_frame_, &encoded_frame);
EXPECT_GT(encoded_frame.data.size(), GG_UINT64_C(0));

Powered by Google App Engine
This is Rietveld 408576698