| Index: webrtc/media/engine/webrtcvideoframefactory_unittest.cc
|
| diff --git a/webrtc/media/engine/webrtcvideoframefactory_unittest.cc b/webrtc/media/engine/webrtcvideoframefactory_unittest.cc
|
| index e2630734cae21e41d5bfcd2a32977ad26ac1f14d..45de453f8b7f86e2605dc1daacade2c3a20ba60d 100644
|
| --- a/webrtc/media/engine/webrtcvideoframefactory_unittest.cc
|
| +++ b/webrtc/media/engine/webrtcvideoframefactory_unittest.cc
|
| @@ -48,11 +48,11 @@ class WebRtcVideoFrameFactoryTest
|
| int src_height,
|
| bool apply_rotation) {
|
| if (!apply_rotation) {
|
| - EXPECT_EQ(dest_frame->GetVideoRotation(), src_rotation);
|
| + EXPECT_EQ(dest_frame->rotation(), src_rotation);
|
| EXPECT_EQ(dest_frame->width(), src_width);
|
| EXPECT_EQ(dest_frame->height(), src_height);
|
| } else {
|
| - EXPECT_EQ(dest_frame->GetVideoRotation(), webrtc::kVideoRotation_0);
|
| + EXPECT_EQ(dest_frame->rotation(), webrtc::kVideoRotation_0);
|
| if (src_rotation == webrtc::kVideoRotation_90 ||
|
| src_rotation == webrtc::kVideoRotation_270) {
|
| EXPECT_EQ(dest_frame->width(), src_height);
|
|
|