Title: [236793] trunk/Source/WebKit
Revision
236793
Author
[email protected]
Date
2018-10-03 06:06:21 -0700 (Wed, 03 Oct 2018)

Log Message

[WPE][GTK] Enable MSE by default
https://bugs.webkit.org/show_bug.cgi?id=190243

Reviewed by Xabier Rodriguez-Calvar.

* UIProcess/API/glib/WebKitSettings.cpp:
(webkit_settings_class_init):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (236792 => 236793)


--- trunk/Source/WebKit/ChangeLog	2018-10-03 12:11:23 UTC (rev 236792)
+++ trunk/Source/WebKit/ChangeLog	2018-10-03 13:06:21 UTC (rev 236793)
@@ -1,3 +1,13 @@
+2018-10-03  Michael Catanzaro  <[email protected]>
+
+        [WPE][GTK] Enable MSE by default
+        https://bugs.webkit.org/show_bug.cgi?id=190243
+
+        Reviewed by Xabier Rodriguez-Calvar.
+
+        * UIProcess/API/glib/WebKitSettings.cpp:
+        (webkit_settings_class_init):
+
 2018-10-02  Alex Christensen  <[email protected]>
 
         Deprecate WKConnection

Modified: trunk/Source/WebKit/UIProcess/API/glib/WebKitSettings.cpp (236792 => 236793)


--- trunk/Source/WebKit/UIProcess/API/glib/WebKitSettings.cpp	2018-10-03 12:11:23 UTC (rev 236792)
+++ trunk/Source/WebKit/UIProcess/API/glib/WebKitSettings.cpp	2018-10-03 13:06:21 UTC (rev 236793)
@@ -1292,10 +1292,9 @@
     /**
      * WebKitSettings:enable-mediasource:
      *
-     * Enable or disable support for MediaSource on pages. MediaSource is an
-     * experimental proposal which extends HTMLMediaElement to allow
-     * _javascript_ to generate media streams for playback.  The standard is
-     * currently a work-in-progress by the W3C HTML Media Task Force.
+     * Enable or disable support for MediaSource on pages. MediaSource
+     * extends HTMLMediaElement to allow _javascript_ to generate media
+     * streams for playback.
      *
      * See also http://www.w3.org/TR/media-source/
      *
@@ -1306,7 +1305,7 @@
         g_param_spec_boolean("enable-mediasource",
             _("Enable MediaSource"),
             _("Whether MediaSource should be enabled."),
-            FALSE,
+            TRUE,
             readWriteConstructParamFlags));
 
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to