12345678910111213141516171819202122232425262728293031323334353637 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: deepak1556 <[email protected]>
- Date: Fri, 3 Sep 2021 18:28:51 -0700
- Subject: fix: expose DecrementCapturerCount in web_contents_impl
- This was made private in https://chromium-review.googlesource.com/c/chromium/src/+/2807829 but
- we invoke it in order to expose contents.decrementCapturerCount([stayHidden, stayAwake])
- to users. We should try to upstream this.
- diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
- index d2a50feea97add9d9c309e8066305caf9105c547..e6fe6ebd7f86df1e5193305a827ac938b822a1ab 100644
- --- a/content/browser/web_contents/web_contents_impl.h
- +++ b/content/browser/web_contents/web_contents_impl.h
- @@ -1816,7 +1816,7 @@ class CONTENT_EXPORT WebContentsImpl : public WebContents,
- // IncrementCapturerCount() is destructed.
- void DecrementCapturerCount(bool stay_hidden,
- bool stay_awake,
- - bool is_activity = true);
- + bool is_activity = true) override;
-
- // Calculates the PageVisibilityState for |visibility|, taking the capturing
- // state into account.
- diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
- index ac9bce453ff812679d8c77d661729ea681977061..7cef50818b3587e033f5cfeea324df17547dfa6e 100644
- --- a/content/public/browser/web_contents.h
- +++ b/content/public/browser/web_contents.h
- @@ -673,6 +673,10 @@ class WebContents : public PageNavigator,
- bool stay_awake,
- bool is_activity = true) = 0;
-
- + virtual void DecrementCapturerCount(bool stay_hidden,
- + bool stay_awake,
- + bool is_activity = true) = 0;
- +
- // Getter for the capture handle, which allows a captured application to
- // opt-in to exposing information to its capturer(s).
- virtual const blink::mojom::CaptureHandleConfig& GetCaptureHandleConfig() = 0;
|