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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
// 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 CHROME_BROWSER_EXTENSIONS_API_DESKTOP_CAPTURE_DESKTOP_CAPTURE_BASE_H_
#define CHROME_BROWSER_EXTENSIONS_API_DESKTOP_CAPTURE_DESKTOP_CAPTURE_BASE_H_
#include <map>
#include "base/macros.h"
#include "base/memory/singleton.h"
#include "chrome/browser/extensions/chrome_extension_function.h"
#include "chrome/browser/media/desktop_media_list.h"
#include "chrome/browser/media/desktop_media_picker.h"
#include "chrome/common/extensions/api/desktop_capture.h"
#include "content/public/browser/web_contents_observer.h"
#include "url/gurl.h"
namespace extensions {
class DesktopCaptureChooseDesktopMediaFunctionBase
: public ChromeAsyncExtensionFunction,
public content::WebContentsObserver {
public:
// Factory creating DesktopMediaList and DesktopMediaPicker instances.
// Used for tests to supply fake picker.
class PickerFactory {
public:
virtual scoped_ptr<DesktopMediaList> CreateModel(bool show_screens,
bool show_windows,
bool show_tabs,
bool show_audio) = 0;
virtual scoped_ptr<DesktopMediaPicker> CreatePicker() = 0;
protected:
virtual ~PickerFactory() {}
};
// Used to set PickerFactory used to create mock DesktopMediaPicker instances
// for tests. Calling tests keep ownership of the factory. Can be called with
// |factory| set to NULL at the end of the test.
static void SetPickerFactoryForTests(PickerFactory* factory);
DesktopCaptureChooseDesktopMediaFunctionBase();
void Cancel();
protected:
~DesktopCaptureChooseDesktopMediaFunctionBase() override;
// |web_contents| is the WebContents for which the stream is created, and will
// also be used to determine where to show the picker's UI.
// |origin| is the origin for which the stream is created.
// |target_name| is the display name of the stream target.
bool Execute(
const std::vector<api::desktop_capture::DesktopCaptureSourceType>&
sources,
content::WebContents* web_contents,
const GURL& origin,
const base::string16 target_name);
int request_id_;
private:
// content::WebContentsObserver overrides.
void WebContentsDestroyed() override;
void OnPickerDialogResults(content::DesktopMediaID source);
// URL of page that desktop capture was requested for.
GURL origin_;
scoped_ptr<DesktopMediaPicker> picker_;
};
class DesktopCaptureCancelChooseDesktopMediaFunctionBase
: public ChromeSyncExtensionFunction {
public:
DesktopCaptureCancelChooseDesktopMediaFunctionBase();
protected:
~DesktopCaptureCancelChooseDesktopMediaFunctionBase() override;
private:
// ExtensionFunction overrides.
bool RunSync() override;
};
class DesktopCaptureRequestsRegistry {
public:
DesktopCaptureRequestsRegistry();
~DesktopCaptureRequestsRegistry();
static DesktopCaptureRequestsRegistry* GetInstance();
void AddRequest(int process_id,
int request_id,
DesktopCaptureChooseDesktopMediaFunctionBase* handler);
void RemoveRequest(int process_id, int request_id);
void CancelRequest(int process_id, int request_id);
private:
friend struct base::DefaultSingletonTraits<DesktopCaptureRequestsRegistry>;
struct RequestId {
RequestId(int process_id, int request_id);
// Need to use RequestId as a key in std::map<>.
bool operator<(const RequestId& other) const;
int process_id;
int request_id;
};
using RequestsMap =
std::map<RequestId, DesktopCaptureChooseDesktopMediaFunctionBase*>;
RequestsMap requests_;
DISALLOW_COPY_AND_ASSIGN(DesktopCaptureRequestsRegistry);
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_API_DESKTOP_CAPTURE_DESKTOP_CAPTURE_BASE_H_
|