| Index: remoting/host/host_extension_session.cc
|
| diff --git a/remoting/host/host_extension_session.cc b/remoting/host/host_extension_session.cc
|
| index 5f548655a38e4bda6b87ac3bc2f9d3387c7386e7..c2d8076bdf5b59e15004478a9ed779bcaad2cf41 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 {
|
|
|