2013-07-31 11:08:45 -07:00
|
|
|
// Copyright (c) 2012 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-CHROMIUM file.
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_
|
2013-07-31 11:08:45 -07:00
|
|
|
|
|
|
|
#include "base/memory/singleton.h"
|
2022-07-20 01:09:14 -07:00
|
|
|
#include "components/webrtc/media_stream_device_enumerator_impl.h"
|
2013-07-31 11:08:45 -07:00
|
|
|
#include "content/public/browser/media_observer.h"
|
2019-01-21 21:58:04 +05:30
|
|
|
#include "content/public/browser/media_stream_request.h"
|
|
|
|
#include "third_party/blink/public/common/mediastream/media_stream_request.h"
|
2022-06-01 08:12:47 +02:00
|
|
|
#include "third_party/blink/public/mojom/mediastream/media_stream.mojom.h"
|
2013-07-31 11:08:45 -07:00
|
|
|
|
2018-10-19 20:51:43 +02:00
|
|
|
namespace electron {
|
2013-07-31 11:08:45 -07:00
|
|
|
|
|
|
|
// This singleton is used to receive updates about media events from the content
|
|
|
|
// layer.
|
2022-07-20 01:09:14 -07:00
|
|
|
class MediaCaptureDevicesDispatcher
|
|
|
|
: public content::MediaObserver,
|
|
|
|
public webrtc::MediaStreamDeviceEnumeratorImpl {
|
2013-07-31 11:08:45 -07:00
|
|
|
public:
|
|
|
|
static MediaCaptureDevicesDispatcher* GetInstance();
|
|
|
|
|
|
|
|
// Overridden from content::MediaObserver:
|
2015-06-05 12:07:27 +08:00
|
|
|
void OnAudioCaptureDevicesChanged() override;
|
|
|
|
void OnVideoCaptureDevicesChanged() override;
|
2018-04-17 21:46:27 -04:00
|
|
|
void OnMediaRequestStateChanged(int render_process_id,
|
|
|
|
int render_view_id,
|
|
|
|
int page_request_id,
|
|
|
|
const GURL& security_origin,
|
2019-07-02 18:22:09 -07:00
|
|
|
blink::mojom::MediaStreamType stream_type,
|
2018-04-17 21:46:27 -04:00
|
|
|
content::MediaRequestState state) override;
|
2015-06-05 12:07:27 +08:00
|
|
|
void OnCreatingAudioStream(int render_process_id,
|
|
|
|
int render_view_id) override;
|
2016-07-04 15:06:05 +09:00
|
|
|
void OnSetCapturingLinkSecured(int render_process_id,
|
|
|
|
int render_frame_id,
|
|
|
|
int page_request_id,
|
2019-07-02 18:22:09 -07:00
|
|
|
blink::mojom::MediaStreamType stream_type,
|
2016-07-04 15:06:05 +09:00
|
|
|
bool is_secure) override;
|
2013-07-31 11:08:45 -07:00
|
|
|
|
2021-11-03 12:41:45 +01:00
|
|
|
// disable copy
|
|
|
|
MediaCaptureDevicesDispatcher(const MediaCaptureDevicesDispatcher&) = delete;
|
|
|
|
MediaCaptureDevicesDispatcher& operator=(
|
|
|
|
const MediaCaptureDevicesDispatcher&) = delete;
|
|
|
|
|
2013-07-31 11:08:45 -07:00
|
|
|
private:
|
2015-12-07 19:55:01 +08:00
|
|
|
friend struct base::DefaultSingletonTraits<MediaCaptureDevicesDispatcher>;
|
2013-07-31 11:08:45 -07:00
|
|
|
|
|
|
|
MediaCaptureDevicesDispatcher();
|
2018-04-17 16:03:51 -07:00
|
|
|
~MediaCaptureDevicesDispatcher() override;
|
2013-07-31 11:08:45 -07:00
|
|
|
};
|
|
|
|
|
2018-10-19 20:51:43 +02:00
|
|
|
} // namespace electron
|
2013-07-31 11:08:45 -07:00
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_
|