Index: remoting/host/continue_window_android.cc |
diff --git a/remoting/host/continue_window_android.cc b/remoting/host/continue_window_android.cc |
deleted file mode 100644 |
index 68175cd658556bf87a69ef18ccdc890b542ca2ca..0000000000000000000000000000000000000000 |
--- a/remoting/host/continue_window_android.cc |
+++ /dev/null |
@@ -1,38 +0,0 @@ |
-// 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::MakeUnique<ContinueWindowAndroid>(); |
-} |
- |
-} // namespace remoting |