diff options
Diffstat (limited to 'remoting/host/capturer_fake.h')
-rw-r--r-- | remoting/host/capturer_fake.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/remoting/host/capturer_fake.h b/remoting/host/capturer_fake.h index 79de376..84cc7ba 100644 --- a/remoting/host/capturer_fake.h +++ b/remoting/host/capturer_fake.h @@ -20,11 +20,13 @@ class CapturerFake : public Capturer { CapturerFake(); virtual ~CapturerFake(); - virtual void CaptureRects(const RectVector& rects, - CaptureCompletedCallback* callback); virtual void ScreenConfigurationChanged(); private: + virtual void CalculateInvalidRects(); + virtual void CaptureRects(const InvalidRects& rects, + CaptureCompletedCallback* callback); + // Generates an image in the front buffer. void GenerateImage(); |