| Index: remoting/host/disconnect_window_android.cc
|
| diff --git a/remoting/host/disconnect_window_android.cc b/remoting/host/disconnect_window_android.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..81750d7d917a9b9360edbe6d539f465bd82d3583
|
| --- /dev/null
|
| +++ b/remoting/host/disconnect_window_android.cc
|
| @@ -0,0 +1,35 @@
|
| +// 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/host_window.h"
|
| +
|
| +namespace remoting {
|
| +
|
| +namespace {
|
| +
|
| +class DisconnectWindowAndroid : public HostWindow {
|
| + public:
|
| + DisconnectWindowAndroid() {}
|
| +
|
| + // HostWindow interface.
|
| + void Start(const base::WeakPtr<ClientSessionControl>& client_session_control)
|
| + override {
|
| + NOTIMPLEMENTED();
|
| + }
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(DisconnectWindowAndroid);
|
| +};
|
| +
|
| +} // namespace
|
| +
|
| +// static
|
| +std::unique_ptr<HostWindow> HostWindow::CreateDisconnectWindow() {
|
| + return base::WrapUnique(new DisconnectWindowAndroid());
|
| +}
|
| +
|
| +} // namespace remoting
|
|
|