| Index: media/blink/video_frame_compositor_unittest.cc
|
| diff --git a/media/blink/video_frame_compositor_unittest.cc b/media/blink/video_frame_compositor_unittest.cc
|
| index 5d901f4ab0287de3cdf0a57cc3b52f6f7011a0f2..74d42d0e854887c6dd8a1b69e90dcecc7dcfc2ff 100644
|
| --- a/media/blink/video_frame_compositor_unittest.cc
|
| +++ b/media/blink/video_frame_compositor_unittest.cc
|
| @@ -102,12 +102,12 @@ TEST_F(VideoFrameCompositorTest, InitialValues) {
|
| EXPECT_FALSE(compositor()->GetCurrentFrame().get());
|
| }
|
|
|
| -TEST_F(VideoFrameCompositorTest, PaintFrameUsingOldRenderingPath) {
|
| +TEST_F(VideoFrameCompositorTest, PaintSingleFrame) {
|
| scoped_refptr<VideoFrame> expected = VideoFrame::CreateEOSFrame();
|
|
|
| // Should notify compositor synchronously.
|
| EXPECT_EQ(0, did_receive_frame_count());
|
| - compositor()->PaintFrameUsingOldRenderingPath(expected);
|
| + compositor()->PaintSingleFrame(expected);
|
| scoped_refptr<VideoFrame> actual = compositor()->GetCurrentFrame();
|
| EXPECT_EQ(expected, actual);
|
| EXPECT_EQ(1, did_receive_frame_count());
|
|
|