Title: [250512] trunk/Source/WebKit
Revision
250512
Author
[email protected]
Date
2019-09-30 01:50:01 -0700 (Mon, 30 Sep 2019)

Log Message

Unreviewed, rolling out r250291.
https://bugs.webkit.org/show_bug.cgi?id=202359

it is failing
TestWebKitAPI.ProcessSwap.GetUserMediaCaptureState (Requested
by youenn on #webkit).

Reverted changeset:

"Delay capture sandbox extension revocation to after the page
close message is sent"
https://bugs.webkit.org/show_bug.cgi?id=202133
https://trac.webkit.org/changeset/250291

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (250511 => 250512)


--- trunk/Source/WebKit/ChangeLog	2019-09-30 08:30:55 UTC (rev 250511)
+++ trunk/Source/WebKit/ChangeLog	2019-09-30 08:50:01 UTC (rev 250512)
@@ -1,3 +1,19 @@
+2019-09-30  Commit Queue  <[email protected]>
+
+        Unreviewed, rolling out r250291.
+        https://bugs.webkit.org/show_bug.cgi?id=202359
+
+        it is failing
+        TestWebKitAPI.ProcessSwap.GetUserMediaCaptureState (Requested
+        by youenn on #webkit).
+
+        Reverted changeset:
+
+        "Delay capture sandbox extension revocation to after the page
+        close message is sent"
+        https://bugs.webkit.org/show_bug.cgi?id=202133
+        https://trac.webkit.org/changeset/250291
+
 2019-09-29  Zan Dobersek  <[email protected]>
 
         ScrollingTreeScrollingNode: use LayerRepresentation for scroll container, scrolled contents layers

Modified: trunk/Source/WebKit/UIProcess/UserMediaPermissionRequestManagerProxy.cpp (250511 => 250512)


--- trunk/Source/WebKit/UIProcess/UserMediaPermissionRequestManagerProxy.cpp	2019-09-30 08:30:55 UTC (rev 250511)
+++ trunk/Source/WebKit/UIProcess/UserMediaPermissionRequestManagerProxy.cpp	2019-09-30 08:50:01 UTC (rev 250512)
@@ -84,9 +84,7 @@
 UserMediaPermissionRequestManagerProxy::~UserMediaPermissionRequestManagerProxy()
 {
 #if ENABLE(MEDIA_STREAM)
-    callOnMainRunLoop([process = makeRef(page().process())] {
-        UserMediaProcessManager::singleton().revokeSandboxExtensionsIfNeeded(process);
-    });
+    UserMediaProcessManager::singleton().revokeSandboxExtensionsIfNeeded(page().process());
     proxies().remove(this);
 #endif
     invalidatePendingRequests();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to