Index: remoting/host/capturer.cc |
diff --git a/remoting/host/capturer.cc b/remoting/host/capturer.cc |
index b66e577260909e1a72fc60740145ec6ec4bcc03c..3e32070703a51185da899d41e624bee78908533a 100644 |
--- a/remoting/host/capturer.cc |
+++ b/remoting/host/capturer.cc |
@@ -10,12 +10,13 @@ |
namespace remoting { |
-Capturer::Capturer() |
+Capturer::Capturer(MessageLoop* message_loop) |
: width_(0), |
height_(0), |
pixel_format_(media::VideoFrame::INVALID), |
bytes_per_row_(0), |
- current_buffer_(0) { |
+ current_buffer_(0), |
+ message_loop_(message_loop) { |
} |
Capturer::~Capturer() { |