Title: [203346] trunk/Source/WebCore
Revision
203346
Author
[email protected]
Date
2016-07-18 05:41:44 -0700 (Mon, 18 Jul 2016)

Log Message

Windows buildfix after r203338
https://bugs.webkit.org/show_bug.cgi?id=159875

Unreviewed buildfix.

* dom/UserGestureIndicator.h:
(WebCore::UserGestureToken::addDestructionObserver):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (203345 => 203346)


--- trunk/Source/WebCore/ChangeLog	2016-07-18 10:39:17 UTC (rev 203345)
+++ trunk/Source/WebCore/ChangeLog	2016-07-18 12:41:44 UTC (rev 203346)
@@ -1,3 +1,13 @@
+2016-07-18  Csaba Osztrogonác  <[email protected]>
+
+        Windows buildfix after r203338
+        https://bugs.webkit.org/show_bug.cgi?id=159875
+
+        Unreviewed buildfix.
+
+        * dom/UserGestureIndicator.h:
+        (WebCore::UserGestureToken::addDestructionObserver):
+
 2016-07-18  Carlos Garcia Campos  <[email protected]>
 
         MemoryPressureHandler doesn't work if cgroups aren't present in Linux

Modified: trunk/Source/WebCore/dom/UserGestureIndicator.h (203345 => 203346)


--- trunk/Source/WebCore/dom/UserGestureIndicator.h	2016-07-18 10:39:17 UTC (rev 203345)
+++ trunk/Source/WebCore/dom/UserGestureIndicator.h	2016-07-18 12:41:44 UTC (rev 203346)
@@ -55,7 +55,7 @@
     bool processingUserGesture() const { return m_state == ProcessingUserGesture; }
     bool processingUserGestureForMedia() const { return m_state == ProcessingUserGesture || m_state == ProcessingPotentialUserGesture; }
 
-    void addDestructionObserver(Function<void (UserGestureToken&)>&& observer)
+    void addDestructionObserver(WTF::Function<void (UserGestureToken&)>&& observer)
     {
         m_destructionObservers.append(WTFMove(observer));
     }
@@ -67,7 +67,7 @@
     }
 
     ProcessingUserGestureState m_state = NotProcessingUserGesture;
-    Vector<Function<void (UserGestureToken&)>> m_destructionObservers;
+    Vector<WTF::Function<void (UserGestureToken&)>> m_destructionObservers;
 };
 
 class UserGestureIndicator {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to