Title: [202445] trunk/Source/WebCore
Revision
202445
Author
[email protected]
Date
2016-06-24 13:53:09 -0700 (Fri, 24 Jun 2016)

Log Message

Another Windows build fix.

* page/FrameView.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (202444 => 202445)


--- trunk/Source/WebCore/ChangeLog	2016-06-24 20:49:31 UTC (rev 202444)
+++ trunk/Source/WebCore/ChangeLog	2016-06-24 20:53:09 UTC (rev 202445)
@@ -1,5 +1,11 @@
 2016-06-24  Anders Carlsson  <[email protected]>
 
+        Another Windows build fix.
+
+        * page/FrameView.h:
+
+2016-06-24  Anders Carlsson  <[email protected]>
+
         Inline more of the Apple Pay source code
         https://bugs.webkit.org/show_bug.cgi?id=159099
 

Modified: trunk/Source/WebCore/page/FrameView.h (202444 => 202445)


--- trunk/Source/WebCore/page/FrameView.h	2016-06-24 20:49:31 UTC (rev 202444)
+++ trunk/Source/WebCore/page/FrameView.h	2016-06-24 20:53:09 UTC (rev 202445)
@@ -111,7 +111,7 @@
     void scheduleRelayout();
     void scheduleRelayoutOfSubtree(RenderElement&);
     void unscheduleRelayout();
-    void queuePostLayoutCallback(Function<void()>&&);
+    void queuePostLayoutCallback(WTF::Function<void ()>&&);
     bool layoutPending() const;
     bool isInLayout() const { return m_layoutPhase != OutsideLayout; }
     bool isInRenderTreeLayout() const { return m_layoutPhase == InRenderTreeLayout; }
@@ -828,7 +828,7 @@
     ScrollPinningBehavior m_scrollPinningBehavior;
 
     IntRect* m_cachedWindowClipRect { nullptr };
-    Vector<Function<void()>> m_postLayoutCallbackQueue;
+    Vector<WTF::Function<void ()>> m_postLayoutCallbackQueue;
 };
 
 inline void FrameView::incrementVisuallyNonEmptyCharacterCount(unsigned count)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to