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

Side by Side Diff: remoting/host/disconnect_window_chromeos.cc

Issue 639233002: Remote assistance on Chrome OS Part IV - It2MeHost (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
(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 // A place holder implementation for the Disconnect window on ChromeOS.
15 class DisconnectWindowAura : public HostWindow {
16 public:
17 DisconnectWindowAura();
18 ~DisconnectWindowAura() override;
19
20 // HostWindow interface.
21 void Start(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 // TODO(kelvinp): Implement this on ChromeOS (See crbug.com/424908).
37 NOTIMPLEMENTED();
38 }
39
40 } // namespace
41
42 // static
43 scoped_ptr<HostWindow> HostWindow::CreateDisconnectWindow() {
44 return make_scoped_ptr(new DisconnectWindowAura());
45 }
46
47 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698