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

Unified Diff: remoting/host/host_window_proxy.h

Issue 13212009: Made DesktopEnvironment responsible for creation of the disconnect window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More Mac fixes. 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
Index: remoting/host/host_window_proxy.h
diff --git a/remoting/host/host_window_proxy.h b/remoting/host/host_window_proxy.h
new file mode 100644
index 0000000000000000000000000000000000000000..da6add8d273796f50620856942292ce3c96ee014
--- /dev/null
+++ b/remoting/host/host_window_proxy.h
@@ -0,0 +1,44 @@
+// 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_PROXY_H_
+#define REMOTING_HOST_HOST_WINDOW_PROXY_H_
+
+#include "base/basictypes.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "remoting/host/host_window.h"
+
+namespace base {
+class SingleThreadTaskRunner;
+}
+
+namespace remoting {
+
+// Takes an instance of |HostWindow| and runs it on the |ui_task_runner| thread.
+class HostWindowProxy : public HostWindow {
+ public:
+ HostWindowProxy(
+ scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
+ scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
+ scoped_ptr<HostWindow> host_window);
+ virtual ~HostWindowProxy();
+
+ // HostWindow overrides.
+ virtual void Start(
+ const base::WeakPtr<ClientSessionControl>& client_session_control)
+ OVERRIDE;
+
+ private:
+ // All thread switching logic is implemented in the ref-counted |Core| class.
+ class Core;
+ scoped_refptr<Core> core_;
+
+ DISALLOW_COPY_AND_ASSIGN(HostWindowProxy);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_HOST_HOST_WINDOW_PROXY_H_

Powered by Google App Engine
This is Rietveld 408576698