Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Side by Side Diff: remoting/host/desktop_environment.cc

Issue 6780014: Clean up remoting project (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a compile glitch on Windows Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/host/desktop_environment.h" 5 #include "remoting/host/desktop_environment.h"
6 6
7 #include "remoting/host/capturer.h" 7 #include "remoting/host/capturer.h"
Lambros 2011/04/01 15:54:00 Nit: These three #includes might not be needed.
dmac 2011/04/01 21:15:07 Sadly they are required for the destructor to comp
8 #include "remoting/host/curtain.h" 8 #include "remoting/host/curtain.h"
9 #include "remoting/protocol/input_stub.h" 9 #include "remoting/host/event_executor.h"
10
11 using remoting::protocol::InputStub;
12 10
13 namespace remoting { 11 namespace remoting {
14 12
15 DesktopEnvironment::DesktopEnvironment(Capturer* capturer, 13 DesktopEnvironment::DesktopEnvironment(Capturer* capturer,
16 InputStub* input_stub, 14 EventExecutor* event_executor,
17 Curtain* curtain) 15 Curtain* curtain)
18 : capturer_(capturer), 16 : capturer_(capturer),
19 input_stub_(input_stub), 17 event_executor_(event_executor),
20 curtain_(curtain) { 18 curtain_(curtain) {
21 } 19 }
22 20
23 DesktopEnvironment::~DesktopEnvironment() { 21 DesktopEnvironment::~DesktopEnvironment() {
24 } 22 }
25 23
26 } // namespace remoting 24 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698