| Index: remoting/host/continue_window_android.cc
|
| diff --git a/remoting/host/continue_window_android.cc b/remoting/host/continue_window_android.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..03544e42f9080f487f3a84ecf4a324df282ddb03
|
| --- /dev/null
|
| +++ b/remoting/host/continue_window_android.cc
|
| @@ -0,0 +1,38 @@
|
| +// Copyright 2016 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 "base/logging.h"
|
| +#include "base/macros.h"
|
| +#include "base/memory/ptr_util.h"
|
| +#include "remoting/host/continue_window.h"
|
| +
|
| +namespace remoting {
|
| +
|
| +namespace {
|
| +
|
| +class ContinueWindowAndroid : public ContinueWindow {
|
| + public:
|
| + ContinueWindowAndroid() {}
|
| +
|
| + protected:
|
| + // ContinueWindow overrides.
|
| + void ShowUi() override {
|
| + NOTIMPLEMENTED();
|
| + }
|
| +
|
| + void HideUi() override {
|
| + NOTIMPLEMENTED();
|
| + }
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(ContinueWindowAndroid);
|
| +};
|
| +
|
| +} // namespace
|
| +
|
| +// static
|
| +std::unique_ptr<HostWindow> HostWindow::CreateContinueWindow() {
|
| + return base::WrapUnique(new ContinueWindowAndroid());
|
| +}
|
| +
|
| +} // namespace remoting
|
|
|