Chromium Code Reviews| Index: remoting/host/continue_window_chromeos.cc |
| diff --git a/remoting/host/continue_window_chromeos.cc b/remoting/host/continue_window_chromeos.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..77b3463a18b6c2a68ab8999cb92a964d5eb9b7a0 |
| --- /dev/null |
| +++ b/remoting/host/continue_window_chromeos.cc |
| @@ -0,0 +1,40 @@ |
| +// 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 "remoting/host/continue_window.h" |
| + |
| +namespace remoting { |
| + |
| +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.
|
| + public: |
| + ContinueWindowAura(); |
| + virtual ~ContinueWindowAura(); |
| + |
| + protected: |
| + // ContinueWindow overrides. |
| + virtual void ShowUi() OVERRIDE; |
| + virtual void HideUi() OVERRIDE; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(ContinueWindowAura); |
| +}; |
| + |
| +ContinueWindowAura::ContinueWindowAura() { |
| +} |
| + |
| +ContinueWindowAura::~ContinueWindowAura() { |
| +} |
| + |
| +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'
|
| +} |
| + |
| +void ContinueWindowAura::HideUi() { |
| +} |
| + |
| +// static |
| +scoped_ptr<HostWindow> HostWindow::CreateContinueWindow() { |
| + return scoped_ptr<HostWindow>(new ContinueWindowAura()); |
| +} |
| + |
| +} // namespace remoting |