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

Unified Diff: remoting/host/host_window.h

Issue 13212009: Made DesktopEnvironment responsible for creation of the disconnect window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Mac Created 7 years, 9 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/host_user_interface.cc ('k') | remoting/host/host_window_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/host_window.h
diff --git a/remoting/host/host_window.h b/remoting/host/host_window.h
new file mode 100644
index 0000000000000000000000000000000000000000..243f9ba65f865067d1331591ab11ec5b68b65c59
--- /dev/null
+++ b/remoting/host/host_window.h
@@ -0,0 +1,49 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_HOST_HOST_WINDOW_H_
+#define REMOTING_HOST_HOST_WINDOW_H_
+
+#include "base/basictypes.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "base/threading/non_thread_safe.h"
+
+namespace remoting {
+
+class ClientSessionControl;
+struct UiStrings;
+
+class HostWindow : public base::NonThreadSafe {
+ public:
+ virtual ~HostWindow() {}
+
+ // Creates a platform-specific instance of the continue window.
+ static scoped_ptr<HostWindow> CreateContinueWindow(
+ const UiStrings& ui_strings);
+
+ // Creates a platform-specific instance of the disconnect window.
+ static scoped_ptr<HostWindow> CreateDisconnectWindow(
+ const UiStrings& ui_strings);
+
+ // Starts the UI state machine. |client_session_control| will be used to
+ // notify the caller about the local user's actions.
+ virtual void Start(
+ const base::WeakPtr<ClientSessionControl>& client_session_control) = 0;
+
+ protected:
+ HostWindow() {}
+
+ private:
+ // Let |HostWindowProxy| to call DetachFromThread() when passing an instance
+ // of |HostWindow| to a different thread.
+ friend class HostWindowProxy;
+
+ DISALLOW_COPY_AND_ASSIGN(HostWindow);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_HOST_HOST_WINDOW_H_
« no previous file with comments | « remoting/host/host_user_interface.cc ('k') | remoting/host/host_window_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698