| Index: remoting/host/desktop_capturer_proxy.cc
|
| diff --git a/remoting/host/desktop_capturer_proxy.cc b/remoting/host/desktop_capturer_proxy.cc
|
| index 6030a64a16844bcc1a79d2c089b5e7a6606dacde..343686a1f1a85bd1870f5de64fbc28c4c8e6adca 100644
|
| --- a/remoting/host/desktop_capturer_proxy.cc
|
| +++ b/remoting/host/desktop_capturer_proxy.cc
|
| @@ -10,6 +10,7 @@
|
|
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| +#include "base/logging.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "base/single_thread_task_runner.h"
|
| @@ -166,6 +167,16 @@ void DesktopCapturerProxy::CaptureFrame() {
|
| base::Bind(&Core::CaptureFrame, base::Unretained(core_.get())));
|
| }
|
|
|
| +bool DesktopCapturerProxy::GetSourceList(SourceList* sources) {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| +bool DesktopCapturerProxy::SelectSource(SourceId id) {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| void DesktopCapturerProxy::OnFrameCaptured(
|
| webrtc::DesktopCapturer::Result result,
|
| std::unique_ptr<webrtc::DesktopFrame> frame) {
|
|
|