| Index: webkit/media/video_renderer_impl_unittest.cc
|
| diff --git a/webkit/media/video_renderer_impl_unittest.cc b/webkit/media/video_renderer_impl_unittest.cc
|
| index 0bd95a791f12930b402608d54fa94811102c599c..3afe623e94259ef14ea3a2f91e6db9c9723f714e 100644
|
| --- a/webkit/media/video_renderer_impl_unittest.cc
|
| +++ b/webkit/media/video_renderer_impl_unittest.cc
|
| @@ -167,14 +167,14 @@ TEST_F(VideoRendererImplTest, SlowPaint_Smaller) {
|
|
|
| TEST_F(VideoRendererImplTest, FastPaint_NoTimestamp) {
|
| VideoFrame* video_frame = natural_frame();
|
| - video_frame->SetTimestamp(media::kNoTimestamp);
|
| + video_frame->SetTimestamp(media::kNoTimestamp());
|
| Paint(video_frame, fast_path_canvas(), kRed);
|
| EXPECT_EQ(SK_ColorRED, GetColor(fast_path_canvas()));
|
| }
|
|
|
| TEST_F(VideoRendererImplTest, SlowPaint_NoTimestamp) {
|
| VideoFrame* video_frame = natural_frame();
|
| - video_frame->SetTimestamp(media::kNoTimestamp);
|
| + video_frame->SetTimestamp(media::kNoTimestamp());
|
| Paint(video_frame, slow_path_canvas(), kRed);
|
| EXPECT_EQ(SK_ColorRED, GetColor(slow_path_canvas()));
|
| }
|
|
|