Title: [227669] trunk/Source/WebKit
Revision
227669
Author
[email protected]
Date
2018-01-26 00:54:17 -0800 (Fri, 26 Jan 2018)

Log Message

[WebVR] Make WebVR available by default for developer builds
https://bugs.webkit.org/show_bug.cgi?id=182101

Reviewed by Michael Catanzaro.

Moved WebVR setting to the experimental features section and make it
available by default for developer builds for GTK and WPE.

* Shared/WebPreferences.yaml:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (227668 => 227669)


--- trunk/Source/WebKit/ChangeLog	2018-01-26 08:51:55 UTC (rev 227668)
+++ trunk/Source/WebKit/ChangeLog	2018-01-26 08:54:17 UTC (rev 227669)
@@ -1,3 +1,15 @@
+2018-01-25  Sergio Villar Senin  <[email protected]>
+
+        [WebVR] Make WebVR available by default for developer builds
+        https://bugs.webkit.org/show_bug.cgi?id=182101
+
+        Reviewed by Michael Catanzaro.
+
+        Moved WebVR setting to the experimental features section and make it
+        available by default for developer builds for GTK and WPE.
+
+        * Shared/WebPreferences.yaml:
+
 2018-01-25  Alex Christensen  <[email protected]>
 
         REGRESSION (r221899): Web Content process hangs when webpage tries to make a new window if the WKWebView doesn’t have a UI delegate

Modified: trunk/Source/WebKit/Shared/WebPreferences.yaml (227668 => 227669)


--- trunk/Source/WebKit/Shared/WebPreferences.yaml	2018-01-26 08:51:55 UTC (rev 227668)
+++ trunk/Source/WebKit/Shared/WebPreferences.yaml	2018-01-26 08:54:17 UTC (rev 227669)
@@ -776,13 +776,6 @@
   humanReadableDescription: "Enable custom clipboard types and better security model for clipboard API."
   webcoreBinding: RuntimeEnabledFeatures
 
-WebVREnabled:
-  type: bool
-  defaultValue: false
-  humanReadableName: "WebVR"
-  humanReadableDescription: "WebVR Module support"
-  webcoreBinding: RuntimeEnabledFeatures
-
 ViewportFitEnabled:
   type: bool
   defaultValue: true
@@ -1192,3 +1185,12 @@
     humanReadableDescription: "Accessibility Object Model support"
     category: experimental
     webcoreBinding: RuntimeEnabledFeatures
+
+WebVREnabled:
+  type: bool
+  defaultValue: DEFAULT_EXPERIMENTAL_FEATURES_ENABLED
+  humanReadableName: "WebVR"
+  humanReadableDescription: "WebVR Module support"
+  webcoreBinding: RuntimeEnabledFeatures
+  category: experimental
+  condition: PLATFORM(GTK) || PLATFORM(WPE)
\ No newline at end of file
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to