blob: 3fb128aab7a41f70a15d7f0578f7caa0ee82decb (
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 (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"
namespace remoting {
DesktopEnvironment::DesktopEnvironment(Capturer* capturer,
EventExecutor* event_executor,
Curtain* curtain)
: capturer_(capturer),
event_executor_(event_executor),
curtain_(curtain) {
}
DesktopEnvironment::~DesktopEnvironment() {
}
} // namespace remoting
|