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