// 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. #ifndef REMOTING_HOST_IPC_MOUSE_CURSOR_MONITOR_H_ #define REMOTING_HOST_IPC_MOUSE_CURSOR_MONITOR_H_ #include <memory> #include "base/memory/raw_ptr.h" #include "base/memory/scoped_refptr.h" #include "base/memory/weak_ptr.h" #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h" #include "third_party/webrtc/modules/desktop_capture/mouse_cursor_monitor.h" namespace remoting { class DesktopSessionProxy; // Routes webrtc::MouseCursorMonitor calls through the IPC channel to the // desktop session agent running in the desktop integration process. class IpcMouseCursorMonitor : public webrtc::MouseCursorMonitor { … }; } // namespace remoting #endif // REMOTING_HOST_IPC_MOUSE_CURSOR_MONITOR_H_