Title: [210762] trunk/Source/WebCore
Revision
210762
Author
achristen...@apple.com
Date
2017-01-13 21:52:49 -0800 (Fri, 13 Jan 2017)

Log Message

Fix WinCairo build after r210753.
https://bugs.webkit.org/show_bug.cgi?id=166730

* platform/WebGLStateTracker.h:
WTF::Function apparently needs to explicitly be differentiated from JSC::Attribute Function in PropertySlot.h.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (210761 => 210762)


--- trunk/Source/WebCore/ChangeLog	2017-01-14 04:04:59 UTC (rev 210761)
+++ trunk/Source/WebCore/ChangeLog	2017-01-14 05:52:49 UTC (rev 210762)
@@ -1,3 +1,11 @@
+2017-01-13  Alex Christensen  <achristen...@webkit.org>
+
+        Fix WinCairo build after r210753.
+        https://bugs.webkit.org/show_bug.cgi?id=166730
+
+        * platform/WebGLStateTracker.h:
+        WTF::Function apparently needs to explicitly be differentiated from JSC::Attribute Function in PropertySlot.h.
+
 2017-01-13  Brent Fulgham  <bfulg...@apple.com>
 
         Potential nullptr dereference in RenderLayer::updateLayerPosition()

Modified: trunk/Source/WebCore/platform/WebGLStateTracker.h (210761 => 210762)


--- trunk/Source/WebCore/platform/WebGLStateTracker.h	2017-01-14 04:04:59 UTC (rev 210761)
+++ trunk/Source/WebCore/platform/WebGLStateTracker.h	2017-01-14 05:52:49 UTC (rev 210762)
@@ -32,7 +32,7 @@
 
 class WebGLStateTracker {
 public:
-    using StateChangeHandler = Function<void(bool isUsingWebGL)>;
+    using StateChangeHandler = WTF::Function<void(bool isUsingWebGL)>;
     WEBCORE_EXPORT explicit WebGLStateTracker(StateChangeHandler&&);
 
     enum WebGLContextCounterType { };
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to