| Index: remoting/host/screen_recorder_unittest.cc
|
| diff --git a/remoting/host/screen_recorder_unittest.cc b/remoting/host/screen_recorder_unittest.cc
|
| index f501a62a3590f2d13e5afd6c0f31d034d012fc1b..4a821e9bd371a7e5416febc63593d2e6a19b2bf7 100644
|
| --- a/remoting/host/screen_recorder_unittest.cc
|
| +++ b/remoting/host/screen_recorder_unittest.cc
|
| @@ -112,7 +112,7 @@ TEST_F(ScreenRecorderTest, OneRecordCycle) {
|
| planes.data[i] = reinterpret_cast<uint8*>(i);
|
| planes.strides[i] = kWidth * 4;
|
| }
|
| - gfx::Size size(kWidth, kHeight);
|
| + SkISize size(SkISize::Make(kWidth, kHeight));
|
| scoped_refptr<CaptureData> data(new CaptureData(planes, size, kFormat));
|
| EXPECT_CALL(capturer_, InvalidateFullScreen());
|
|
|
| @@ -161,7 +161,7 @@ TEST_F(ScreenRecorderTest, StartAndStop) {
|
| planes.strides[i] = kWidth * 4;
|
| }
|
|
|
| - gfx::Size size(kWidth, kHeight);
|
| + SkISize size(SkISize::Make(kWidth, kHeight));
|
| scoped_refptr<CaptureData> data(new CaptureData(planes, size, kFormat));
|
| EXPECT_CALL(capturer_, InvalidateFullScreen());
|
|
|
|
|