Title: [169993] trunk/Source/WebKit2
Revision
169993
Author
[email protected]
Date
2014-06-15 12:35:34 -0700 (Sun, 15 Jun 2014)

Log Message

Unreviewed build fix for the GTK+ port after r169990.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::resetState): Pass the error value to
the rest of invalidateCallbackMap calls.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (169992 => 169993)


--- trunk/Source/WebKit2/ChangeLog	2014-06-15 19:12:31 UTC (rev 169992)
+++ trunk/Source/WebKit2/ChangeLog	2014-06-15 19:35:34 UTC (rev 169993)
@@ -1,3 +1,11 @@
+2014-06-15  Zan Dobersek  <[email protected]>
+
+        Unreviewed build fix for the GTK+ port after r169990.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::resetState): Pass the error value to
+        the rest of invalidateCallbackMap calls.
+
 2014-06-15  Anders Carlsson  <[email protected]>
 
         Remove WKPageRunJavaScriptInMainFrame_b

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (169992 => 169993)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2014-06-15 19:12:31 UTC (rev 169992)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2014-06-15 19:35:34 UTC (rev 169993)
@@ -4294,14 +4294,14 @@
     invalidateCallbackMap(m_attributedStringForCharacterRangeCallbacks, error);
 #endif
 #if PLATFORM(IOS)
-    invalidateCallbackMap(m_gestureCallbacks);
-    invalidateCallbackMap(m_touchesCallbacks);
-    invalidateCallbackMap(m_autocorrectionCallbacks);
-    invalidateCallbackMap(m_autocorrectionContextCallbacks);
-    invalidateCallbackMap(m_dictationContextCallbacks);
+    invalidateCallbackMap(m_gestureCallbacks, error);
+    invalidateCallbackMap(m_touchesCallbacks, error);
+    invalidateCallbackMap(m_autocorrectionCallbacks, error);
+    invalidateCallbackMap(m_autocorrectionContextCallbacks, error);
+    invalidateCallbackMap(m_dictationContextCallbacks, error);
 #endif
 #if PLATFORM(GTK)
-    invalidateCallbackMap(m_printFinishedCallbacks);
+    invalidateCallbackMap(m_printFinishedCallbacks, error);
 #endif
 
     Vector<WebEditCommandProxy*> editCommandVector;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to