Add diagnostics_writer.cc to the list of files allowed to printf.
[chromium-blink-merge.git] / remoting / host / host_extension_session.cc
blob949b3b2ddd6b30dbd2e6acdd513fe77347eca629
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "remoting/host/host_extension_session.h"
7 #include "remoting/codec/video_encoder.h"
8 #include "third_party/webrtc/modules/desktop_capture/screen_capturer.h"
10 namespace remoting {
12 scoped_ptr<webrtc::ScreenCapturer> HostExtensionSession::OnCreateVideoCapturer(
13 scoped_ptr<webrtc::ScreenCapturer> capturer) {
14 return capturer.Pass();
17 scoped_ptr<VideoEncoder> HostExtensionSession::OnCreateVideoEncoder(
18 scoped_ptr<VideoEncoder> encoder) {
19 return encoder.Pass();
22 bool HostExtensionSession::ModifiesVideoPipeline() const {
23 return false;
26 } // namespace remoting