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

Unified Diff: webrtc/api/remotevideocapturer_unittest.cc

Issue 1655793003: Make cricket::VideoCapturer implement VideoSourceInterface (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added dummy capturerenderadapter.cc Created 4 years, 10 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 | « webrtc/api/androidvideocapturer.cc ('k') | webrtc/media/base/capturemanager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/remotevideocapturer_unittest.cc
diff --git a/webrtc/api/remotevideocapturer_unittest.cc b/webrtc/api/remotevideocapturer_unittest.cc
index 5d9672dbe99c5e83f1eeadbcc7610c54be258ff3..bc5e0754490dc5862846ea3f8a9d69c1d59ec85e 100644
--- a/webrtc/api/remotevideocapturer_unittest.cc
+++ b/webrtc/api/remotevideocapturer_unittest.cc
@@ -34,13 +34,10 @@ class RemoteVideoCapturerTest : public testing::Test,
virtual void SetUp() {
capturer_.SignalStateChange.connect(
this, &RemoteVideoCapturerTest::OnStateChange);
- capturer_.SignalVideoFrame.connect(
- this, &RemoteVideoCapturerTest::OnVideoFrame);
}
~RemoteVideoCapturerTest() {
capturer_.SignalStateChange.disconnect(this);
- capturer_.SignalVideoFrame.disconnect(this);
}
int captured_frame_num() const {
@@ -60,11 +57,6 @@ class RemoteVideoCapturerTest : public testing::Test,
capture_state_ = capture_state;
}
- void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* frame) {
- EXPECT_EQ(&capturer_, capturer);
- ++captured_frame_num_;
- }
-
int captured_frame_num_;
CaptureState capture_state_;
};
@@ -103,13 +95,3 @@ TEST_F(RemoteVideoCapturerTest, GetBestCaptureFormat) {
EXPECT_TRUE(capturer_.GetBestCaptureFormat(desired, &best_format));
EXPECT_EQ(expected_format, best_format);
}
-
-TEST_F(RemoteVideoCapturerTest, InputFrame) {
- EXPECT_EQ(0, captured_frame_num());
-
- cricket::WebRtcVideoFrame test_frame;
- capturer_.SignalVideoFrame(&capturer_, &test_frame);
- EXPECT_EQ(1, captured_frame_num());
- capturer_.SignalVideoFrame(&capturer_, &test_frame);
- EXPECT_EQ(2, captured_frame_num());
-}
« no previous file with comments | « webrtc/api/androidvideocapturer.cc ('k') | webrtc/media/base/capturemanager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698