Title: [169982] trunk/Source/WebKit2
Revision
169982
Author
[email protected]
Date
2014-06-14 14:59:51 -0700 (Sat, 14 Jun 2014)

Log Message

Tried to fix the GTK build.

* UIProcess/GenericCallback.h:
(WebKit::invalidateCallbackMap):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (169981 => 169982)


--- trunk/Source/WebKit2/ChangeLog	2014-06-14 21:35:56 UTC (rev 169981)
+++ trunk/Source/WebKit2/ChangeLog	2014-06-14 21:59:51 UTC (rev 169982)
@@ -1,3 +1,10 @@
+2014-06-14  Dan Bernstein  <[email protected]>
+
+        Tried to fix the GTK build.
+
+        * UIProcess/GenericCallback.h:
+        (WebKit::invalidateCallbackMap):
+
 2014-06-14  Anders Carlsson  <[email protected]>
 
         Fix build.

Modified: trunk/Source/WebKit2/UIProcess/GenericCallback.h (169981 => 169982)


--- trunk/Source/WebKit2/UIProcess/GenericCallback.h	2014-06-14 21:35:56 UTC (rev 169981)
+++ trunk/Source/WebKit2/UIProcess/GenericCallback.h	2014-06-14 21:59:51 UTC (rev 169982)
@@ -190,7 +190,7 @@
     Vector<T> callbacksVector;
     copyValuesToVector(map, callbacksVector);
     for (size_t i = 0, size = callbacksVector.size(); i < size; ++i)
-        callbacksVector[i]->invalidate();
+        callbacksVector[i]->invalidate(error);
     map.clear();
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to