blob: c6fc867b87b43859ae4a7625b6ab134e0e5bbf69 (
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
52
53
54
55
|
// Copyright 2015 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_DESKTOP_CAPTURER_PROXY_H_
#define REMOTING_HOST_DESKTOP_CAPTURER_PROXY_H_
#include "base/callback.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/desktop_capturer.h"
namespace base {
class SingleThreadTaskRunner;
} // namespace base
namespace remoting {
namespace protocol {
class CursorShapeInfo;
} // namespace protocol
// DesktopCapturerProxy is responsible for calling webrtc::DesktopCapturer on
// the capturer thread and then returning results to the caller's thread.
class DesktopCapturerProxy : public webrtc::DesktopCapturer {
public:
DesktopCapturerProxy(
scoped_refptr<base::SingleThreadTaskRunner> capture_task_runner,
scoped_ptr<webrtc::DesktopCapturer> capturer);
~DesktopCapturerProxy() override;
// webrtc::DesktopCapturer interface.
void Start(Callback* callback) override;
void Capture(const webrtc::DesktopRegion& rect) override;
private:
class Core;
void OnFrameCaptured(scoped_ptr<webrtc::DesktopFrame> frame);
base::ThreadChecker thread_checker_;
scoped_ptr<Core> core_;
scoped_refptr<base::SingleThreadTaskRunner> capture_task_runner_;
webrtc::DesktopCapturer::Callback* callback_;
base::WeakPtrFactory<DesktopCapturerProxy> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(DesktopCapturerProxy);
};
} // namespace remoting
#endif // REMOTING_HOST_DESKTOP_CAPTURER_PROXY_H_
|