| 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_BASIC_DESKTOP_ENVIRONMENT_H_ | 5 #ifndef REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ |
| 6 #define REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ | 6 #define REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 // Used to create audio/video capturers and event executor that work with | 26 // Used to create audio/video capturers and event executor that work with |
| 27 // the local console. | 27 // the local console. |
| 28 class BasicDesktopEnvironment : public DesktopEnvironment { | 28 class BasicDesktopEnvironment : public DesktopEnvironment { |
| 29 public: | 29 public: |
| 30 virtual ~BasicDesktopEnvironment(); | 30 virtual ~BasicDesktopEnvironment(); |
| 31 | 31 |
| 32 // DesktopEnvironment implementation. | 32 // DesktopEnvironment implementation. |
| 33 virtual scoped_ptr<AudioCapturer> CreateAudioCapturer() OVERRIDE; | 33 virtual scoped_ptr<AudioCapturer> CreateAudioCapturer() OVERRIDE; |
| 34 virtual scoped_ptr<InputInjector> CreateInputInjector() OVERRIDE; | 34 virtual scoped_ptr<InputInjector> CreateInputInjector() OVERRIDE; |
| 35 virtual scoped_ptr<ScreenControls> CreateScreenControls() OVERRIDE; | 35 virtual scoped_ptr<ScreenControls> CreateScreenControls() OVERRIDE; |
| 36 virtual scoped_ptr<webrtc::ScreenCapturer> CreateVideoCapturer() OVERRIDE; | 36 virtual scoped_ptr<webrtc::DesktopCapturer> CreateVideoCapturer() OVERRIDE; |
| 37 virtual scoped_ptr<webrtc::MouseCursorMonitor> CreateMouseCursorMonitor() | 37 virtual scoped_ptr<webrtc::MouseCursorMonitor> CreateMouseCursorMonitor() |
| 38 OVERRIDE; | 38 OVERRIDE; |
| 39 virtual std::string GetCapabilities() const OVERRIDE; | 39 virtual std::string GetCapabilities() const OVERRIDE; |
| 40 virtual void SetCapabilities(const std::string& capabilities) OVERRIDE; | 40 virtual void SetCapabilities(const std::string& capabilities) OVERRIDE; |
| 41 virtual scoped_ptr<GnubbyAuthHandler> CreateGnubbyAuthHandler( | 41 virtual scoped_ptr<GnubbyAuthHandler> CreateGnubbyAuthHandler( |
| 42 protocol::ClientStub* client_stub) OVERRIDE; | 42 protocol::ClientStub* client_stub) OVERRIDE; |
| 43 | 43 |
| 44 protected: | 44 protected: |
| 45 friend class BasicDesktopEnvironmentFactory; | 45 friend class BasicDesktopEnvironmentFactory; |
| 46 | 46 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 69 // Task runner on which methods of DesktopEnvironment interface should be | 69 // Task runner on which methods of DesktopEnvironment interface should be |
| 70 // called. | 70 // called. |
| 71 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_; | 71 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_; |
| 72 | 72 |
| 73 // Used to run input-related tasks. | 73 // Used to run input-related tasks. |
| 74 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner_; | 74 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner_; |
| 75 | 75 |
| 76 // Used to run UI code. | 76 // Used to run UI code. |
| 77 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; | 77 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; |
| 78 | 78 |
| 79 // Options shared between |ScreenCapturer| and |MouseCursorMonitor|. It | 79 // Options shared between |DesktopCapturer| and |MouseCursorMonitor|. It |
| 80 // might contain expensive resources, thus justifying the sharing. | 80 // might contain expensive resources, thus justifying the sharing. |
| 81 // Also: it's dynamically allocated to avoid having to bring in | 81 // Also: it's dynamically allocated to avoid having to bring in |
| 82 // desktop_capture_options.h which brings in X11 headers which causes hard to | 82 // desktop_capture_options.h which brings in X11 headers which causes hard to |
| 83 // find build errors. | 83 // find build errors. |
| 84 scoped_ptr<webrtc::DesktopCaptureOptions> desktop_capture_options_; | 84 scoped_ptr<webrtc::DesktopCaptureOptions> desktop_capture_options_; |
| 85 | 85 |
| 86 DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironment); | 86 DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironment); |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 // Used to create |BasicDesktopEnvironment| instances. | 89 // Used to create |BasicDesktopEnvironment| instances. |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 | 121 |
| 122 // Used to run UI code. | 122 // Used to run UI code. |
| 123 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; | 123 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; |
| 124 | 124 |
| 125 DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironmentFactory); | 125 DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironmentFactory); |
| 126 }; | 126 }; |
| 127 | 127 |
| 128 } // namespace remoting | 128 } // namespace remoting |
| 129 | 129 |
| 130 #endif // REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ | 130 #endif // REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ |
| OLD | NEW |