OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef REMOTING_HOST_DESKTOP_ENVIRONMENT_H_ | 5 #ifndef REMOTING_HOST_DESKTOP_ENVIRONMENT_H_ |
6 #define REMOTING_HOST_DESKTOP_ENVIRONMENT_H_ | 6 #define REMOTING_HOST_DESKTOP_ENVIRONMENT_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 | 10 |
11 namespace remoting { | 11 namespace remoting { |
12 | 12 |
13 class AudioCapturer; | 13 class AudioCapturer; |
14 class ChromotingHostContext; | |
15 class EventExecutor; | 14 class EventExecutor; |
16 class VideoFrameCapturer; | 15 class VideoFrameCapturer; |
17 | 16 |
18 namespace protocol { | 17 namespace protocol { |
19 class ClipboardStub; | 18 class ClipboardStub; |
20 } | 19 } |
21 | 20 |
22 class DesktopEnvironment { | 21 class DesktopEnvironment { |
23 public: | 22 public: |
24 DesktopEnvironment(scoped_ptr<AudioCapturer> audio_capturer, | 23 DesktopEnvironment(scoped_ptr<AudioCapturer> audio_capturer, |
(...skipping 17 matching lines...) Expand all Loading... |
42 | 41 |
43 // Used to capture video to deliver to clients. | 42 // Used to capture video to deliver to clients. |
44 scoped_ptr<VideoFrameCapturer> video_capturer_; | 43 scoped_ptr<VideoFrameCapturer> video_capturer_; |
45 | 44 |
46 DISALLOW_COPY_AND_ASSIGN(DesktopEnvironment); | 45 DISALLOW_COPY_AND_ASSIGN(DesktopEnvironment); |
47 }; | 46 }; |
48 | 47 |
49 } // namespace remoting | 48 } // namespace remoting |
50 | 49 |
51 #endif // REMOTING_HOST_DESKTOP_ENVIRONMENT_H_ | 50 #endif // REMOTING_HOST_DESKTOP_ENVIRONMENT_H_ |
OLD | NEW |