chromium/remoting/host/fake_mouse_cursor_monitor.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "remoting/host/fake_mouse_cursor_monitor.h"

#include <memory>

#include "base/check.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_frame.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
#include "third_party/webrtc/modules/desktop_capture/mouse_cursor.h"

namespace remoting {

FakeMouseCursorMonitor::FakeMouseCursorMonitor() :{}

FakeMouseCursorMonitor::~FakeMouseCursorMonitor() = default;

void FakeMouseCursorMonitor::Init(
    webrtc::MouseCursorMonitor::Callback* callback,
    webrtc::MouseCursorMonitor::Mode mode) {}

void FakeMouseCursorMonitor::Capture() {}

}  // namespace remoting