Index: remoting/host/disconnect_window_chromeos.cc |
diff --git a/remoting/host/disconnect_window_chromeos.cc b/remoting/host/disconnect_window_chromeos.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5f23cff1cdaa5bc4ac1425fcea03a7f5f364ef8c |
--- /dev/null |
+++ b/remoting/host/disconnect_window_chromeos.cc |
@@ -0,0 +1,45 @@ |
+// Copyright 2014 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. |
+ |
+#include <string> |
+ |
+#include "remoting/host/client_session_control.h" |
+#include "remoting/host/host_window.h" |
+ |
+namespace remoting { |
+ |
+namespace { |
+ |
+class DisconnectWindowAura : public HostWindow { |
+ public: |
+ DisconnectWindowAura(); |
+ virtual ~DisconnectWindowAura(); |
+ |
+ // HostWindow overrides. |
+ virtual void Start( |
+ const base::WeakPtr<ClientSessionControl>& client_session_control) |
+ OVERRIDE; |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(DisconnectWindowAura); |
+}; |
+ |
+DisconnectWindowAura::DisconnectWindowAura() { |
+} |
+ |
+DisconnectWindowAura::~DisconnectWindowAura() { |
+} |
+ |
+void DisconnectWindowAura::Start( |
+ const base::WeakPtr<ClientSessionControl>& client_session_control) { |
+} |
+ |
+} // namespace |
+ |
+// static |
+scoped_ptr<HostWindow> HostWindow::CreateDisconnectWindow() { |
+ return scoped_ptr<HostWindow>(new DisconnectWindowAura()); |
+} |
+ |
+} // namespace remoting |