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

Unified Diff: webrtc/media/engine/webrtcvideocapturer_unittest.cc

Issue 2534553002: Replace VideoCaptureDataCallback by VideoSinkInterface. (Closed)
Patch Set: Break overlong lines. Created 4 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
« no previous file with comments | « webrtc/media/engine/webrtcvideocapturer.cc ('k') | webrtc/modules/video_capture/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/engine/webrtcvideocapturer_unittest.cc
diff --git a/webrtc/media/engine/webrtcvideocapturer_unittest.cc b/webrtc/media/engine/webrtcvideocapturer_unittest.cc
index 718ab4c116f03eed0848dfa07e38890f1858ee21..32dab9b22f1faf45f73e453a2c6eec5dd9dfed8b 100644
--- a/webrtc/media/engine/webrtcvideocapturer_unittest.cc
+++ b/webrtc/media/engine/webrtcvideocapturer_unittest.cc
@@ -75,7 +75,7 @@ TEST_F(WebRtcVideoCapturerTest, TestInit) {
}
TEST_F(WebRtcVideoCapturerTest, TestInitVcm) {
- EXPECT_TRUE(capturer_->Init(factory_->Create(0,
+ EXPECT_TRUE(capturer_->Init(factory_->Create(
reinterpret_cast<const char*>(kTestDeviceId.c_str()))));
}
@@ -101,7 +101,7 @@ TEST_F(WebRtcVideoCapturerTest, TestCapture) {
}
TEST_F(WebRtcVideoCapturerTest, TestCaptureVcm) {
- EXPECT_TRUE(capturer_->Init(factory_->Create(0,
+ EXPECT_TRUE(capturer_->Init(factory_->Create(
reinterpret_cast<const char*>(kTestDeviceId.c_str()))));
cricket::VideoCapturerListener listener(capturer_.get());
EXPECT_TRUE(capturer_->GetSupportedFormats()->empty());
« no previous file with comments | « webrtc/media/engine/webrtcvideocapturer.cc ('k') | webrtc/modules/video_capture/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698