blob: 94a20e113ff414a0d758884bba3e20d5da246b5a [file] [log] [blame]
sergeyu@chromium.orgaf54d4b2013-10-16 02:42:38 +00001/*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#include "webrtc/modules/desktop_capture/mouse_cursor_monitor.h"
12
13#include <cstddef>
14
15namespace webrtc {
16
sergeyu@chromium.org1d76e9b2013-10-31 01:51:21 +000017MouseCursorMonitor* MouseCursorMonitor::CreateForWindow(
18 const DesktopCaptureOptions& options,
19 WindowId window) {
20 return NULL;
21}
22
sergeyu@chromium.orgaf54d4b2013-10-16 02:42:38 +000023MouseCursorMonitor* MouseCursorMonitor::CreateForScreen(
jiayl@webrtc.orga2c26542014-01-14 18:26:37 +000024 const DesktopCaptureOptions& options,
25 ScreenId screen) {
sergeyu@chromium.orgaf54d4b2013-10-16 02:42:38 +000026 return NULL;
27}
28
29} // namespace webrtc