Index: webrtc/api/remotevideocapturer_unittest.cc |
diff --git a/webrtc/api/remotevideocapturer_unittest.cc b/webrtc/api/remotevideocapturer_unittest.cc |
index c31272c4d6eef4583076532a1c36a8e416e9ea0f..6478d214c4e4ccd63a65641a35a13bc7d7b860d4 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()); |
-} |