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

Unified Diff: remoting/host/me2me_desktop_environment.h

Issue 13461029: The continue window is owned by the desktop environment now. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/it2me_host_user_interface.cc ('k') | remoting/host/me2me_desktop_environment.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/me2me_desktop_environment.h
diff --git a/remoting/host/me2me_desktop_environment.h b/remoting/host/me2me_desktop_environment.h
index 5be25655b082dbe06acd01cc378100dcc1fcdeaa..d7aa7081c59d8e927b492962a97e8e5d8a5c334d 100644
--- a/remoting/host/me2me_desktop_environment.h
+++ b/remoting/host/me2me_desktop_environment.h
@@ -9,6 +9,9 @@
namespace remoting {
+class HostWindow;
+class LocalInputMonitor;
+
// Same as BasicDesktopEnvironment but supports desktop resizing and X DAMAGE
// notifications on Linux.
class Me2MeDesktopEnvironment : public BasicDesktopEnvironment {
@@ -26,9 +29,15 @@ class Me2MeDesktopEnvironment : public BasicDesktopEnvironment {
scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
base::WeakPtr<ClientSessionControl> client_session_control,
- const UiStrings* ui_strings);
+ const UiStrings& ui_strings);
private:
+ // Presents the disconnect window to the local user.
+ scoped_ptr<HostWindow> disconnect_window_;
+
+ // Notifies the client session about the local mouse movements.
+ scoped_ptr<LocalInputMonitor> local_input_monitor_;
+
DISALLOW_COPY_AND_ASSIGN(Me2MeDesktopEnvironment);
};
« no previous file with comments | « remoting/host/it2me_host_user_interface.cc ('k') | remoting/host/me2me_desktop_environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698