summaryrefslogtreecommitdiffstats
path: root/remoting/host/capturer_fake.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/capturer_fake.h')
-rw-r--r--remoting/host/capturer_fake.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/remoting/host/capturer_fake.h b/remoting/host/capturer_fake.h
index 46e0266..84cc7ba 100644
--- a/remoting/host/capturer_fake.h
+++ b/remoting/host/capturer_fake.h
@@ -10,7 +10,8 @@
namespace remoting {
-// A CapturerFake generates artificial image for testing purpose.
+// A CapturerFake always output an image of 640x480 in 24bit RGB. The image
+// is artificially generated for testing purpose.
//
// CapturerFake is doubled buffered as required by Capturer. See
// remoting/host/capturer.h.
@@ -29,10 +30,8 @@ class CapturerFake : public Capturer {
// Generates an image in the front buffer.
void GenerateImage();
- int box_pos_x_;
- int box_pos_y_;
- int box_speed_x_;
- int box_speed_y_;
+ // The seed for generating the image.
+ int seed_;
// We have two buffers for the screen images as required by Capturer.
scoped_array<uint8> buffers_[kNumBuffers];