summaryrefslogtreecommitdiffstats
path: root/remoting/host/mouse_cursor_monitor_proxy.h
blob: 3ad7f583c1d79f5c904f1526f70205f80548f283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2016 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.

#ifndef REMOTING_HOST_MOUSE_CURSOR_MONITOR_PROXY_H_
#define REMOTING_HOST_MOUSE_CURSOR_MONITOR_PROXY_H_

#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
#include "third_party/webrtc/modules/desktop_capture/mouse_cursor_monitor.h"

namespace base {
class SingleThreadTaskRunner;
}  // namespace base

namespace remoting {

class MouseCursorMonitorProxy : public webrtc::MouseCursorMonitor {
 public:
  MouseCursorMonitorProxy(
      scoped_refptr<base::SingleThreadTaskRunner> capture_task_runner,
      scoped_ptr<webrtc::MouseCursorMonitor> mouse_cursor_monitor);
  ~MouseCursorMonitorProxy() override;

  // webrtc::MouseCursorMonitor interface.
  void Init(Callback* callback, Mode mode) override;
  void Capture() override;

 private:
  class Core;

  void OnMouseCursor(scoped_ptr<webrtc::MouseCursor> cursor);
  void OnMouseCursorPosition(CursorState state,
                             const webrtc::DesktopVector& position);

  base::ThreadChecker thread_checker_;

  scoped_ptr<Core> core_;
  scoped_refptr<base::SingleThreadTaskRunner> capture_task_runner_;
  Callback* callback_ = nullptr;

  base::WeakPtrFactory<MouseCursorMonitorProxy> weak_factory_;

  DISALLOW_COPY_AND_ASSIGN(MouseCursorMonitorProxy);
};

}  // namespace remoting

#endif  // REMOTING_HOST_MOUSE_CURSOR_MONITOR_PROXY_H_