| Index: remoting/host/capturer_fake.h
|
| diff --git a/remoting/host/capturer_fake.h b/remoting/host/capturer_fake.h
|
| index 61f412833762107f9b6214dec2dea267230827d2..252fd40495a43667158ae4654e90ffa928a3b7c5 100644
|
| --- a/remoting/host/capturer_fake.h
|
| +++ b/remoting/host/capturer_fake.h
|
| @@ -25,17 +25,17 @@ class CapturerFake : public Capturer {
|
| virtual media::VideoFrame::Format pixel_format() const OVERRIDE;
|
| virtual void ClearInvalidRegion() OVERRIDE;
|
| virtual void InvalidateRegion(const SkRegion& invalid_region) OVERRIDE;
|
| - virtual void InvalidateScreen(const gfx::Size& size) OVERRIDE;
|
| + virtual void InvalidateScreen(const SkISize& size) OVERRIDE;
|
| virtual void InvalidateFullScreen() OVERRIDE;
|
| virtual void CaptureInvalidRegion(CaptureCompletedCallback* callback)
|
| OVERRIDE;
|
| - virtual const gfx::Size& size_most_recent() const OVERRIDE;
|
| + virtual const SkISize& size_most_recent() const OVERRIDE;
|
|
|
| private:
|
| // Generates an image in the front buffer.
|
| void GenerateImage();
|
|
|
| - gfx::Size size_;
|
| + SkISize size_;
|
| int bytes_per_row_;
|
| int box_pos_x_;
|
| int box_pos_y_;
|
|
|