summaryrefslogtreecommitdiffstats
path: root/remoting/host/desktop_environment.cc
blob: 8c662b2406c37b1a35b71792bb9f5d0b070c12e5 (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
25
26
27
// Copyright (c) 2011 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/desktop_environment.h"

#include "remoting/host/capturer.h"
#include "remoting/host/curtain.h"
#include "remoting/host/event_executor.h"
#include "remoting/host/disconnect_window.h"

namespace remoting {

DesktopEnvironment::DesktopEnvironment(Capturer* capturer,
                                       EventExecutor* event_executor,
                                       Curtain* curtain,
                                       DisconnectWindow* disconnect_window)
    : capturer_(capturer),
      event_executor_(event_executor),
      curtain_(curtain),
      disconnect_window_(disconnect_window) {
}

DesktopEnvironment::~DesktopEnvironment() {
}

}  // namespace remoting