diff options
Diffstat (limited to 'remoting/host/video_frame_capturer_fake.cc')
-rw-r--r-- | remoting/host/video_frame_capturer_fake.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/remoting/host/video_frame_capturer_fake.cc b/remoting/host/video_frame_capturer_fake.cc index 0fff545..aff8f3e 100644 --- a/remoting/host/video_frame_capturer_fake.cc +++ b/remoting/host/video_frame_capturer_fake.cc @@ -25,7 +25,8 @@ COMPILE_ASSERT((kBoxWidth % kSpeed == 0) && (kWidth % kSpeed == 0) && static const int kBytesPerPixel = 4; // 32 bit RGB is 4 bytes per pixel. VideoFrameCapturerFake::VideoFrameCapturerFake() - : bytes_per_row_(0), + : size_(SkISize::Make(0, 0)), + bytes_per_row_(0), box_pos_x_(0), box_pos_y_(0), box_speed_x_(kSpeed), |