summaryrefslogtreecommitdiffstats
path: root/remoting/host/host_extension_session.cc
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/host_extension_session.cc')
-rw-r--r--remoting/host/host_extension_session.cc10
1 files changed, 4 insertions, 6 deletions
diff --git a/remoting/host/host_extension_session.cc b/remoting/host/host_extension_session.cc
index 5f54865..c2d8076 100644
--- a/remoting/host/host_extension_session.cc
+++ b/remoting/host/host_extension_session.cc
@@ -9,14 +9,12 @@
namespace remoting {
-scoped_ptr<webrtc::DesktopCapturer> HostExtensionSession::OnCreateVideoCapturer(
- scoped_ptr<webrtc::DesktopCapturer> capturer) {
- return capturer.Pass();
+void HostExtensionSession::OnCreateVideoCapturer(
+ scoped_ptr<webrtc::DesktopCapturer>* capturer) {
}
-scoped_ptr<VideoEncoder> HostExtensionSession::OnCreateVideoEncoder(
- scoped_ptr<VideoEncoder> encoder) {
- return encoder.Pass();
+void HostExtensionSession::OnCreateVideoEncoder(
+ scoped_ptr<VideoEncoder>* encoder) {
}
bool HostExtensionSession::ModifiesVideoPipeline() const {