Title: [204473] trunk/Source/WebKit2
Revision
204473
Author
[email protected]
Date
2016-08-15 12:11:32 -0700 (Mon, 15 Aug 2016)

Log Message

Fix iOS build.

* WebProcess/WebPage/ios/WebPageIOS.mm:
(WebKit::WebPage::webGLPolicyForURL):
(WebKit::WebPage::resolveWebGLPolicyForURL):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (204472 => 204473)


--- trunk/Source/WebKit2/ChangeLog	2016-08-15 18:59:57 UTC (rev 204472)
+++ trunk/Source/WebKit2/ChangeLog	2016-08-15 19:11:32 UTC (rev 204473)
@@ -1,3 +1,11 @@
+2016-08-15  Anders Carlsson  <[email protected]>
+
+        Fix iOS build.
+
+        * WebProcess/WebPage/ios/WebPageIOS.mm:
+        (WebKit::WebPage::webGLPolicyForURL):
+        (WebKit::WebPage::resolveWebGLPolicyForURL):
+
 2016-08-15  Keith Rollin  <[email protected]>
 
         Rename LOG_ALWAYS

Modified: trunk/Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm (204472 => 204473)


--- trunk/Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm	2016-08-15 18:59:57 UTC (rev 204472)
+++ trunk/Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm	2016-08-15 19:11:32 UTC (rev 204473)
@@ -3060,12 +3060,12 @@
 #if ENABLE(WEBGL)
 WebCore::WebGLLoadPolicy WebPage::webGLPolicyForURL(WebFrame*, const String&)
 {
-    return WKShouldBlockWebGL() ? WebGLBlockCreation : WebGLAllowCreation;
+    return WebGLAllowCreation;
 }
 
 WebCore::WebGLLoadPolicy WebPage::resolveWebGLPolicyForURL(WebFrame*, const String&)
 {
-    return WKShouldBlockWebGL() ? WebGLBlockCreation : WebGLAllowCreation;
+    return WebGLAllowCreation;
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to