Index: webrtc/media/base/videocapturer_unittest.cc |
diff --git a/webrtc/media/base/videocapturer_unittest.cc b/webrtc/media/base/videocapturer_unittest.cc |
index cbd92c5b8c32cf804b85274c652b88fb5b7b02ce..76661cbaa76f8efe8054fd8d1797331b135e3cb1 100644 |
--- a/webrtc/media/base/videocapturer_unittest.cc |
+++ b/webrtc/media/base/videocapturer_unittest.cc |
@@ -52,9 +52,9 @@ class VideoCapturerTest |
void OnVideoFrame(cricket::VideoCapturer*, const cricket::VideoFrame* frame) { |
++video_frames_received_; |
if (expects_rotation_applied_) { |
- EXPECT_EQ(webrtc::kVideoRotation_0, frame->GetRotation()); |
+ EXPECT_EQ(webrtc::kVideoRotation_0, frame->GetVideoRotation()); |
} else { |
- EXPECT_EQ(capturer_.GetRotation(), frame->GetRotation()); |
+ EXPECT_EQ(capturer_.GetRotation(), frame->GetVideoRotation()); |
} |
renderer_.RenderFrame(frame); |
} |