diff options
Diffstat (limited to 'remoting/host/capturer_linux.cc')
-rw-r--r-- | remoting/host/capturer_linux.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/remoting/host/capturer_linux.cc b/remoting/host/capturer_linux.cc index 2f2f8f0..404d527 100644 --- a/remoting/host/capturer_linux.cc +++ b/remoting/host/capturer_linux.cc @@ -84,8 +84,9 @@ class CapturerLinuxPimpl { bool capture_fullscreen_; }; -CapturerLinux::CapturerLinux() - : pimpl_(new CapturerLinuxPimpl(this)) { +CapturerLinux::CapturerLinux(MessageLoop* message_loop) + : Capturer(message_loop), + pimpl_(new CapturerLinuxPimpl(this)) { // TODO(ajwong): This should be moved into an Init() method on Capturer // itself. Then we can remove the CHECK. CHECK(pimpl_->Init()); |