Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(418)

Unified Diff: remoting/host/ipc_video_frame_capturer.cc

Issue 2483483004: [Chromoting] Implement new APIs in DesktopCapturer (Closed)
Patch Set: Resolve review comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/ipc_video_frame_capturer.h ('k') | remoting/protocol/connection_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/ipc_video_frame_capturer.cc
diff --git a/remoting/host/ipc_video_frame_capturer.cc b/remoting/host/ipc_video_frame_capturer.cc
index 9d061ddac1719abda205640c4f14ccb4f10aef7a..6823a311f9fcf46a79ac622a4f2e979470c2d044 100644
--- a/remoting/host/ipc_video_frame_capturer.cc
+++ b/remoting/host/ipc_video_frame_capturer.cc
@@ -4,6 +4,7 @@
#include "remoting/host/ipc_video_frame_capturer.h"
+#include "base/logging.h"
#include "remoting/host/desktop_session_proxy.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_frame.h"
@@ -41,4 +42,14 @@ void IpcVideoFrameCapturer::OnCaptureResult(
callback_->OnCaptureResult(result, std::move(frame));
}
+bool IpcVideoFrameCapturer::GetSourceList(SourceList* sources) {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+bool IpcVideoFrameCapturer::SelectSource(SourceId id) {
+ NOTIMPLEMENTED();
+ return false;
+}
+
} // namespace remoting
« no previous file with comments | « remoting/host/ipc_video_frame_capturer.h ('k') | remoting/protocol/connection_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698