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

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: Move DEPS to remoting/host 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 class ContinueWindowAura : public ContinueWindow {
rmsousa 2014/10/14 00:18:25 This isn't really an "Aura" implementation, just a
kelvinp 2014/10/15 23:03:10 Done.
10 public:
11 ContinueWindowAura();
12 virtual ~ContinueWindowAura();
13
14 protected:
15 // ContinueWindow overrides.
16 virtual void ShowUi() OVERRIDE;
17 virtual void HideUi() OVERRIDE;
18
19 private:
20 DISALLOW_COPY_AND_ASSIGN(ContinueWindowAura);
21 };
22
23 ContinueWindowAura::ContinueWindowAura() {
24 }
25
26 ContinueWindowAura::~ContinueWindowAura() {
27 }
28
29 void ContinueWindowAura::ShowUi() {
Jamie 2014/10/14 01:18:42 These empty methods should all have NOTIMPLEMENTED
kelvinp 2014/10/15 23:03:10 Those function will be called on ChromeOS and can'
30 }
31
32 void ContinueWindowAura::HideUi() {
33 }
34
35 // static
36 scoped_ptr<HostWindow> HostWindow::CreateContinueWindow() {
37 return scoped_ptr<HostWindow>(new ContinueWindowAura());
38 }
39
40 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698