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

Side by Side Diff: remoting/host/continue_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: ChromotingHostContext cleanup Created 6 years, 2 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 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 "remoting/host/continue_window.h"
6
7 namespace remoting {
8
9 namespace {
10
11 // A place holder implementation for the ContinueWindow on
12 // ChromeOS. Remote assistance on Chrome OS is currently under a flag so it is
13 // secure to leave it unimplemented for now.
14 class ContinueWindowAura : public ContinueWindow {
15 public:
16 ContinueWindowAura();
17 virtual ~ContinueWindowAura();
Wez 2014/10/24 00:28:48 override?
kelvinp 2014/10/24 21:39:42 Done.
18
19 protected:
20 // ContinueWindow interface.
21 virtual void ShowUi() override;
22 virtual void HideUi() override;
23
24 private:
25 DISALLOW_COPY_AND_ASSIGN(ContinueWindowAura);
26 };
27
28 ContinueWindowAura::ContinueWindowAura() {
29 }
30
31 ContinueWindowAura::~ContinueWindowAura() {
32 }
33
34 void ContinueWindowAura::ShowUi() {
35 // TODO(kelvinp): Implement this on Chrome OS (See crbug.com/424908).
Wez 2014/10/24 00:28:48 NOTIMPLEMENTED()?
kelvinp 2014/10/24 21:39:41 Done.
36 }
37
38 void ContinueWindowAura::HideUi() {
39 // TODO(kelvinp): Implement this on Chrome OS (See crbug.com/424908).
Wez 2014/10/24 00:28:48 As above?
kelvinp 2014/10/24 21:39:41 Done.
40 }
41
42 } // namespace
43
44 // static
45 scoped_ptr<HostWindow> HostWindow::CreateContinueWindow() {
46 return make_scoped_ptr(new ContinueWindowAura());
47 }
48
49 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698