| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "remoting/host/chromeos/mouse_cursor_monitor_aura.h" | |
| 6 | |
| 7 #include "base/logging.h" | |
| 8 | |
| 9 namespace remoting { | |
| 10 | |
| 11 MouseCursorMonitorAura::MouseCursorMonitorAura( | |
| 12 const webrtc::DesktopCaptureOptions& options) | |
| 13 : callback_(nullptr), | |
| 14 mode_(SHAPE_AND_POSITION) { | |
| 15 } | |
| 16 | |
| 17 MouseCursorMonitorAura::~MouseCursorMonitorAura() { | |
| 18 NOTIMPLEMENTED(); | |
| 19 } | |
| 20 | |
| 21 void MouseCursorMonitorAura::Init(Callback* callback, Mode mode) { | |
| 22 DCHECK(!callback_); | |
| 23 DCHECK(callback); | |
| 24 | |
| 25 callback_ = callback; | |
| 26 mode_ = mode; | |
| 27 | |
| 28 NOTIMPLEMENTED(); | |
| 29 } | |
| 30 | |
| 31 void MouseCursorMonitorAura::Capture() { | |
| 32 NOTIMPLEMENTED(); | |
| 33 } | |
| 34 | |
| 35 } // namespace remoting | |
| OLD | NEW |