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

Side by Side Diff: remoting/host/ipc_desktop_environment.h

Issue 13932020: Set the initial resolution of an RDP session to the client screen resolution if it is available. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Clang Created 7 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
« no previous file with comments | « remoting/host/host_mock_objects.h ('k') | remoting/host/ipc_desktop_environment.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_IPC_DESKTOP_ENVIRONMENT_H_ 5 #ifndef REMOTING_HOST_IPC_DESKTOP_ENVIRONMENT_H_
6 #define REMOTING_HOST_IPC_DESKTOP_ENVIRONMENT_H_ 6 #define REMOTING_HOST_IPC_DESKTOP_ENVIRONMENT_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 base::WeakPtr<ClientSessionControl> client_session_control, 46 base::WeakPtr<ClientSessionControl> client_session_control,
47 base::WeakPtr<DesktopSessionConnector> desktop_session_connector, 47 base::WeakPtr<DesktopSessionConnector> desktop_session_connector,
48 bool virtual_terminal); 48 bool virtual_terminal);
49 virtual ~IpcDesktopEnvironment(); 49 virtual ~IpcDesktopEnvironment();
50 50
51 // DesktopEnvironment implementation. 51 // DesktopEnvironment implementation.
52 virtual scoped_ptr<AudioCapturer> CreateAudioCapturer() OVERRIDE; 52 virtual scoped_ptr<AudioCapturer> CreateAudioCapturer() OVERRIDE;
53 virtual scoped_ptr<InputInjector> CreateInputInjector() OVERRIDE; 53 virtual scoped_ptr<InputInjector> CreateInputInjector() OVERRIDE;
54 virtual scoped_ptr<ScreenControls> CreateScreenControls() OVERRIDE; 54 virtual scoped_ptr<ScreenControls> CreateScreenControls() OVERRIDE;
55 virtual scoped_ptr<media::ScreenCapturer> CreateVideoCapturer() OVERRIDE; 55 virtual scoped_ptr<media::ScreenCapturer> CreateVideoCapturer() OVERRIDE;
56 virtual std::string GetCapabilities() const OVERRIDE;
57 virtual void SetCapabilities(const std::string& capabilities) OVERRIDE;
56 58
57 private: 59 private:
58 scoped_refptr<DesktopSessionProxy> desktop_session_proxy_; 60 scoped_refptr<DesktopSessionProxy> desktop_session_proxy_;
59 61
60 DISALLOW_COPY_AND_ASSIGN(IpcDesktopEnvironment); 62 DISALLOW_COPY_AND_ASSIGN(IpcDesktopEnvironment);
61 }; 63 };
62 64
63 // Used to create IpcDesktopEnvironment objects integrating with the desktop via 65 // Used to create IpcDesktopEnvironment objects integrating with the desktop via
64 // a helper process and talking to that process via IPC. 66 // a helper process and talking to that process via IPC.
65 class IpcDesktopEnvironmentFactory 67 class IpcDesktopEnvironmentFactory
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 // This gives us more than 67 years of unique IDs assuming a new ID is 134 // This gives us more than 67 years of unique IDs assuming a new ID is
133 // allocated every second. 135 // allocated every second.
134 int next_id_; 136 int next_id_;
135 137
136 DISALLOW_COPY_AND_ASSIGN(IpcDesktopEnvironmentFactory); 138 DISALLOW_COPY_AND_ASSIGN(IpcDesktopEnvironmentFactory);
137 }; 139 };
138 140
139 } // namespace remoting 141 } // namespace remoting
140 142
141 #endif // REMOTING_HOST_IPC_DESKTOP_ENVIRONMENT_H_ 143 #endif // REMOTING_HOST_IPC_DESKTOP_ENVIRONMENT_H_
OLDNEW
« no previous file with comments | « remoting/host/host_mock_objects.h ('k') | remoting/host/ipc_desktop_environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698