a4de915b74
* chore: bump chromium in DEPS to db7d7b3e7cb2bc925f2abfde526280cfdfc21a41 * Update patches * chore: bump chromium in DEPS to 5613e1b99a44fcbe22f3910f803ca76903a77ec1 * Update patches * Network service: Remove primary_network_context bool. https://chromium-review.googlesource.com/c/chromium/src/+/2204678 * WebContentsObserver now implements OnRendererResponsive https://chromium-review.googlesource.com/c/chromium/src/+/2211066 * update patches * Fixup printing patch * chore: bump chromium in DEPS to e387b972cdd7160c416fa6c64a724e2258aa0218 * update patches * [printing] Move PrintHostMsg_DidPrintContent_Params to print.mojom https://chromium-review.googlesource.com/c/chromium/src/+/2212110 * [XProto] Move items from ::x11::XProto to ::x11 https://chromium-review.googlesource.com/c/chromium/src/+/2218476 * revert Add IChromeAccessible This was added in https://chromium-review.googlesource.com/c/chromium/src/+/2206224 but it breaks WOA builds because third_party/win_build_output/midl/ui/accessibility/platform/arm64 does not exist. The link above says that the new interface is behind a feature flag which is disabled by default so it is safe to remove for now. * rebaseline ichromeaccessible for Windows arm64 This patch will not be needed once we get the next roll. * Update to 1b9e01844e8bf1aaafc4a52c0c62af7f56d9637b to get arm64 fix * update patches * chore: bump chromium in DEPS to 096aefa04092ea00f7b68d8d19345883f20db3c3 * chore: bump chromium in DEPS to a524a45ffd1d6fd46a7a86138fe2b22df5b6651a * chore: update patches * Window Placement: Gate cross-screen fullscreen behavior on permission https://chromium-review.googlesource.com/c/chromium/src/+/2203268 * chore: add spec for https://crbug.com/1085836 * chore: bump chromium in DEPS to ff6c4f4b826d66c2e32380bf5d1eb5e1fe37faef * update patches Co-authored-by: John Kleinschmidt <jkleinsc@github.com> Co-authored-by: Electron Bot <anonymous@electronjs.org> Co-authored-by: deepak1556 <hop2deep@gmail.com>
141 lines
6.3 KiB
Diff
141 lines
6.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: deepak1556 <hop2deep@gmail.com>
|
|
Date: Thu, 18 Oct 2018 17:07:01 -0700
|
|
Subject: desktop_media_list.patch
|
|
|
|
* Expose the capturer source list for the desktopCapturer API
|
|
* Free the one-time use capturer after thumbnails are fetched
|
|
|
|
diff --git a/chrome/browser/media/webrtc/desktop_media_list.h b/chrome/browser/media/webrtc/desktop_media_list.h
|
|
index a489bf6ea2179059f53e53563e993db9c7cd123b..93e237569fe94ec8526f67d915e1a7352d586b16 100644
|
|
--- a/chrome/browser/media/webrtc/desktop_media_list.h
|
|
+++ b/chrome/browser/media/webrtc/desktop_media_list.h
|
|
@@ -38,6 +38,9 @@ class DesktopMediaList {
|
|
|
|
virtual ~DesktopMediaList() {}
|
|
|
|
+ // Allows listening to notifications generated by the model.
|
|
+ virtual void AddObserver(DesktopMediaListObserver* observer) = 0;
|
|
+
|
|
// Sets time interval between updates. By default list of sources and their
|
|
// thumbnail are updated once per second. If called after StartUpdating() then
|
|
// it will take effect only after the next update.
|
|
@@ -69,6 +72,7 @@ class DesktopMediaList {
|
|
|
|
virtual int GetSourceCount() const = 0;
|
|
virtual const Source& GetSource(int index) const = 0;
|
|
+ virtual const std::vector<Source>& GetSources() const = 0;
|
|
|
|
virtual content::DesktopMediaID::Type GetMediaListType() const = 0;
|
|
};
|
|
diff --git a/chrome/browser/media/webrtc/desktop_media_list_base.cc b/chrome/browser/media/webrtc/desktop_media_list_base.cc
|
|
index 147d5be9f7f56fb71468b56e86eb33b59d51cd66..5930fe95e33a9e5a3108c31e8c34daa9c724511c 100644
|
|
--- a/chrome/browser/media/webrtc/desktop_media_list_base.cc
|
|
+++ b/chrome/browser/media/webrtc/desktop_media_list_base.cc
|
|
@@ -20,6 +20,11 @@ DesktopMediaListBase::DesktopMediaListBase(base::TimeDelta update_period)
|
|
|
|
DesktopMediaListBase::~DesktopMediaListBase() {}
|
|
|
|
+void DesktopMediaListBase::AddObserver(DesktopMediaListObserver* observer) {
|
|
+ DCHECK(!observer_);
|
|
+ observer_ = observer;
|
|
+}
|
|
+
|
|
void DesktopMediaListBase::SetUpdatePeriod(base::TimeDelta period) {
|
|
DCHECK(!observer_);
|
|
update_period_ = period;
|
|
@@ -54,7 +59,7 @@ void DesktopMediaListBase::Update(UpdateCallback callback) {
|
|
DCHECK(sources_.empty());
|
|
DCHECK(!refresh_callback_);
|
|
refresh_callback_ = std::move(callback);
|
|
- Refresh(false);
|
|
+ Refresh(true);
|
|
}
|
|
|
|
int DesktopMediaListBase::GetSourceCount() const {
|
|
@@ -68,6 +73,11 @@ const DesktopMediaList::Source& DesktopMediaListBase::GetSource(
|
|
return sources_[index];
|
|
}
|
|
|
|
+const std::vector<DesktopMediaList::Source>& DesktopMediaListBase::GetSources()
|
|
+ const {
|
|
+ return sources_;
|
|
+}
|
|
+
|
|
DesktopMediaID::Type DesktopMediaListBase::GetMediaListType() const {
|
|
return type_;
|
|
}
|
|
@@ -79,6 +89,12 @@ DesktopMediaListBase::SourceDescription::SourceDescription(
|
|
|
|
void DesktopMediaListBase::UpdateSourcesList(
|
|
const std::vector<SourceDescription>& new_sources) {
|
|
+ // Notify observer when there was no new source captured.
|
|
+ if (new_sources.empty()) {
|
|
+ observer_->OnSourceUnchanged(this);
|
|
+ return;
|
|
+ }
|
|
+
|
|
typedef std::set<DesktopMediaID> SourceSet;
|
|
SourceSet new_source_set;
|
|
for (size_t i = 0; i < new_sources.size(); ++i) {
|
|
diff --git a/chrome/browser/media/webrtc/desktop_media_list_base.h b/chrome/browser/media/webrtc/desktop_media_list_base.h
|
|
index 3c09ec3111d54cb4f0b74f16a81292b779009eae..5c3667822afd47a22878b508b844a615c24f3162 100644
|
|
--- a/chrome/browser/media/webrtc/desktop_media_list_base.h
|
|
+++ b/chrome/browser/media/webrtc/desktop_media_list_base.h
|
|
@@ -27,6 +27,7 @@ class DesktopMediaListBase : public DesktopMediaList {
|
|
~DesktopMediaListBase() override;
|
|
|
|
// DesktopMediaList interface.
|
|
+ void AddObserver(DesktopMediaListObserver* observer) override;
|
|
void SetUpdatePeriod(base::TimeDelta period) override;
|
|
void SetThumbnailSize(const gfx::Size& thumbnail_size) override;
|
|
void SetViewDialogWindowId(content::DesktopMediaID dialog_id) override;
|
|
@@ -34,6 +35,7 @@ class DesktopMediaListBase : public DesktopMediaList {
|
|
void Update(UpdateCallback callback) override;
|
|
int GetSourceCount() const override;
|
|
const Source& GetSource(int index) const override;
|
|
+ const std::vector<Source>& GetSources() const override;
|
|
content::DesktopMediaID::Type GetMediaListType() const override;
|
|
|
|
static uint32_t GetImageHash(const gfx::Image& image);
|
|
diff --git a/chrome/browser/media/webrtc/desktop_media_list_observer.h b/chrome/browser/media/webrtc/desktop_media_list_observer.h
|
|
index ad7f766a36b1b6b2a8bc0f96369f1aaadf6681f7..f6c6c14a0937430df62c9b9c1132c5916a9f2009 100644
|
|
--- a/chrome/browser/media/webrtc/desktop_media_list_observer.h
|
|
+++ b/chrome/browser/media/webrtc/desktop_media_list_observer.h
|
|
@@ -20,6 +20,7 @@ class DesktopMediaListObserver {
|
|
int new_index) = 0;
|
|
virtual void OnSourceNameChanged(DesktopMediaList* list, int index) = 0;
|
|
virtual void OnSourceThumbnailChanged(DesktopMediaList* list, int index) = 0;
|
|
+ virtual void OnSourceUnchanged(DesktopMediaList* list) = 0;
|
|
|
|
protected:
|
|
virtual ~DesktopMediaListObserver() {}
|
|
diff --git a/chrome/browser/media/webrtc/native_desktop_media_list.cc b/chrome/browser/media/webrtc/native_desktop_media_list.cc
|
|
index 622d9a22c8e53ba13f00c078a8240c0449c0900a..a190f487c7c388631e83bb951420d699b913bdea 100644
|
|
--- a/chrome/browser/media/webrtc/native_desktop_media_list.cc
|
|
+++ b/chrome/browser/media/webrtc/native_desktop_media_list.cc
|
|
@@ -10,13 +10,14 @@
|
|
#include "base/hash/hash.h"
|
|
#include "base/message_loop/message_pump_type.h"
|
|
#include "base/single_thread_task_runner.h"
|
|
+#include "base/strings/string_number_conversions.h"
|
|
#include "base/strings/utf_string_conversions.h"
|
|
#include "base/threading/thread_restrictions.h"
|
|
#include "build/build_config.h"
|
|
#include "chrome/browser/media/webrtc/desktop_media_list.h"
|
|
-#include "chrome/grit/generated_resources.h"
|
|
#include "content/public/browser/browser_task_traits.h"
|
|
#include "content/public/browser/browser_thread.h"
|
|
+#include "electron/grit/electron_resources.h"
|
|
#include "media/base/video_util.h"
|
|
#include "third_party/libyuv/include/libyuv/scale_argb.h"
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
|
@@ -221,6 +222,8 @@ void NativeDesktopMediaList::Worker::RefreshThumbnails(
|
|
FROM_HERE,
|
|
base::BindOnce(&NativeDesktopMediaList::UpdateNativeThumbnailsFinished,
|
|
media_list_));
|
|
+
|
|
+ capturer_.reset();
|
|
}
|
|
|
|
bool NativeDesktopMediaList::Worker::IsCurrentFrameValid() const {
|