OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include <string> |
| 6 |
| 7 #include "remoting/host/client_session_control.h" |
| 8 #include "remoting/host/host_window.h" |
| 9 |
| 10 namespace remoting { |
| 11 |
| 12 namespace { |
| 13 |
| 14 class DisconnectWindowAura : public HostWindow { |
| 15 public: |
| 16 DisconnectWindowAura(); |
| 17 virtual ~DisconnectWindowAura(); |
| 18 |
| 19 // HostWindow overrides. |
| 20 virtual void Start( |
| 21 const base::WeakPtr<ClientSessionControl>& client_session_control) |
| 22 OVERRIDE; |
| 23 |
| 24 private: |
| 25 DISALLOW_COPY_AND_ASSIGN(DisconnectWindowAura); |
| 26 }; |
| 27 |
| 28 DisconnectWindowAura::DisconnectWindowAura() { |
| 29 } |
| 30 |
| 31 DisconnectWindowAura::~DisconnectWindowAura() { |
| 32 } |
| 33 |
| 34 void DisconnectWindowAura::Start( |
| 35 const base::WeakPtr<ClientSessionControl>& client_session_control) { |
| 36 } |
| 37 |
| 38 } // namespace |
| 39 |
| 40 // static |
| 41 scoped_ptr<HostWindow> HostWindow::CreateDisconnectWindow() { |
| 42 return scoped_ptr<HostWindow>(new DisconnectWindowAura()); |
| 43 } |
| 44 |
| 45 } // namespace remoting |
OLD | NEW |