Index: webrtc/media/engine/webrtcvideoframefactory_unittest.cc |
diff --git a/webrtc/media/engine/webrtcvideoframefactory_unittest.cc b/webrtc/media/engine/webrtcvideoframefactory_unittest.cc |
index cbf7d5f9b618a8b5a613a2e88c26d7c856553af9..df9d1f924f52c647f059f3dbeb36410635746185 100644 |
--- a/webrtc/media/engine/webrtcvideoframefactory_unittest.cc |
+++ b/webrtc/media/engine/webrtcvideoframefactory_unittest.cc |
@@ -46,11 +46,11 @@ class WebRtcVideoFrameFactoryTest |
int src_height, |
bool apply_rotation) { |
if (!apply_rotation) { |
- EXPECT_EQ(dest_frame->GetRotation(), src_rotation); |
+ EXPECT_EQ(dest_frame->GetVideoRotation(), src_rotation); |
EXPECT_EQ(dest_frame->GetWidth(), src_width); |
EXPECT_EQ(dest_frame->GetHeight(), src_height); |
} else { |
- EXPECT_EQ(dest_frame->GetRotation(), webrtc::kVideoRotation_0); |
+ EXPECT_EQ(dest_frame->GetVideoRotation(), webrtc::kVideoRotation_0); |
if (src_rotation == webrtc::kVideoRotation_90 || |
src_rotation == webrtc::kVideoRotation_270) { |
EXPECT_EQ(dest_frame->GetWidth(), src_height); |