diff options
Diffstat (limited to 'remoting/base/capture_data.h')
-rw-r--r-- | remoting/base/capture_data.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/remoting/base/capture_data.h b/remoting/base/capture_data.h index f399e70..dd6c4b9 100644 --- a/remoting/base/capture_data.h +++ b/remoting/base/capture_data.h @@ -38,6 +38,10 @@ class CaptureData : public base::RefCountedThreadSafe<CaptureData> { // written into |rects|. const InvalidRects& dirty_rects() const { return dirty_rects_; } + // TODO(simonmorris): The next two methods should be replaced by a + // gfx::Size size(), and objects that store that size should also + // use a gfx::Size to do so. + // Get the width of the image captured. int width() const { return width_; } |