Title: [260117] trunk/Tools
Revision
260117
Author
[email protected]
Date
2020-04-14 22:30:59 -0700 (Tue, 14 Apr 2020)

Log Message

WKTR always enables capturing audio/video in GPUProcess
https://bugs.webkit.org/show_bug.cgi?id=210319

Reviewed by Tim Horton.

Capturing in the GPUProcess should be off by default. GPU capture can be enabled at runtime via
the --internal-feature flag of run-webkit-tests.

* WebKitTestRunner/TestOptions.h:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (260116 => 260117)


--- trunk/Tools/ChangeLog	2020-04-15 04:13:45 UTC (rev 260116)
+++ trunk/Tools/ChangeLog	2020-04-15 05:30:59 UTC (rev 260117)
@@ -1,3 +1,15 @@
+2020-04-14  Jer Noble  <[email protected]>
+
+        WKTR always enables capturing audio/video in GPUProcess
+        https://bugs.webkit.org/show_bug.cgi?id=210319
+
+        Reviewed by Tim Horton.
+
+        Capturing in the GPUProcess should be off by default. GPU capture can be enabled at runtime via
+        the --internal-feature flag of run-webkit-tests.
+
+        * WebKitTestRunner/TestOptions.h:
+
 2020-04-14  Peng Liu  <[email protected]>
 
         Adopt interface AVAudioRoutingArbiter for Mac

Modified: trunk/Tools/WebKitTestRunner/TestOptions.h (260116 => 260117)


--- trunk/Tools/WebKitTestRunner/TestOptions.h	2020-04-15 04:13:45 UTC (rev 260116)
+++ trunk/Tools/WebKitTestRunner/TestOptions.h	2020-04-15 05:30:59 UTC (rev 260117)
@@ -100,8 +100,8 @@
     bool enableLazyImageLoading { false };
     bool allowsLinkPreview { true };
     bool enableCaptureVideoInUIProcess { false };
-    bool enableCaptureVideoInGPUProcess { true };
-    bool enableCaptureAudioInGPUProcess { true };
+    bool enableCaptureVideoInGPUProcess { false };
+    bool enableCaptureAudioInGPUProcess { false };
     bool allowTopNavigationToDataURLs { true };
     bool enableInAppBrowserPrivacy { false };
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to