Upstream version 10.39.233.0
[platform/framework/web/crosswalk.git] / src / remoting / host / host_extension_session.cc
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.
4
5 #include "remoting/host/host_extension_session.h"
6
7 #include "remoting/codec/video_encoder.h"
8 #include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h"
9
10 namespace remoting {
11
12 void HostExtensionSession::OnCreateVideoCapturer(
13     scoped_ptr<webrtc::DesktopCapturer>* capturer) {
14 }
15
16 void HostExtensionSession::OnCreateVideoEncoder(
17     scoped_ptr<VideoEncoder>* encoder) {
18 }
19
20 bool HostExtensionSession::ModifiesVideoPipeline() const {
21   return false;
22 }
23
24 } // namespace remoting