| Index: remoting/host/capturer_gdi.cc
|
| diff --git a/remoting/host/capturer_gdi.cc b/remoting/host/capturer_gdi.cc
|
| index 8e1a375d30cf077cef3a4b5b7631ebfb02a0c1fd..74115bc37070028545e7cdb33485dfa3580e68b4 100644
|
| --- a/remoting/host/capturer_gdi.cc
|
| +++ b/remoting/host/capturer_gdi.cc
|
| @@ -14,8 +14,9 @@ static const int kPixelsPerMeter = 3780;
|
| // 32 bit RGBA is 4 bytes per pixel.
|
| static const int kBytesPerPixel = 4;
|
|
|
| -CapturerGdi::CapturerGdi()
|
| - : desktop_dc_(NULL),
|
| +CapturerGdi::CapturerGdi(MessageLoop* message_loop)
|
| + : Capturer(message_loop),
|
| + desktop_dc_(NULL),
|
| memory_dc_(NULL),
|
| capture_fullscreen_(true) {
|
| memset(target_bitmap_, 0, sizeof(target_bitmap_));
|
|
|