Index: remoting/host/chromeos/mouse_cursor_monitor_aura.cc |
diff --git a/remoting/host/chromeos/mouse_cursor_monitor_aura.cc b/remoting/host/chromeos/mouse_cursor_monitor_aura.cc |
deleted file mode 100644 |
index 68b89a8340a8be9a1d162c26ab9846ec14b80a4d..0000000000000000000000000000000000000000 |
--- a/remoting/host/chromeos/mouse_cursor_monitor_aura.cc |
+++ /dev/null |
@@ -1,35 +0,0 @@ |
-// 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/chromeos/mouse_cursor_monitor_aura.h" |
- |
-#include "base/logging.h" |
- |
-namespace remoting { |
- |
-MouseCursorMonitorAura::MouseCursorMonitorAura( |
- const webrtc::DesktopCaptureOptions& options) |
- : callback_(nullptr), |
- mode_(SHAPE_AND_POSITION) { |
-} |
- |
-MouseCursorMonitorAura::~MouseCursorMonitorAura() { |
- NOTIMPLEMENTED(); |
-} |
- |
-void MouseCursorMonitorAura::Init(Callback* callback, Mode mode) { |
- DCHECK(!callback_); |
- DCHECK(callback); |
- |
- callback_ = callback; |
- mode_ = mode; |
- |
- NOTIMPLEMENTED(); |
-} |
- |
-void MouseCursorMonitorAura::Capture() { |
- NOTIMPLEMENTED(); |
-} |
- |
-} // namespace remoting |