blob: 5f548655a38e4bda6b87ac3bc2f9d3387c7386e7 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/host/host_extension_session.h"
#include "remoting/codec/video_encoder.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h"
namespace remoting {
scoped_ptr<webrtc::DesktopCapturer> HostExtensionSession::OnCreateVideoCapturer(
scoped_ptr<webrtc::DesktopCapturer> capturer) {
return capturer.Pass();
}
scoped_ptr<VideoEncoder> HostExtensionSession::OnCreateVideoEncoder(
scoped_ptr<VideoEncoder> encoder) {
return encoder.Pass();
}
bool HostExtensionSession::ModifiesVideoPipeline() const {
return false;
}
} // namespace remoting