summaryrefslogtreecommitdiffstats
path: root/remoting/host/host_extension_session.cc
blob: c2d8076bdf5b59e15004478a9ed779bcaad2cf41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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 {

void HostExtensionSession::OnCreateVideoCapturer(
    scoped_ptr<webrtc::DesktopCapturer>* capturer) {
}

void HostExtensionSession::OnCreateVideoEncoder(
    scoped_ptr<VideoEncoder>* encoder) {
}

bool HostExtensionSession::ModifiesVideoPipeline() const {
  return false;
}

} // namespace remoting