Title: [92479] trunk/Source/WebKit/qt
Revision
92479
Author
[email protected]
Date
2011-08-05 07:17:23 -0700 (Fri, 05 Aug 2011)

Log Message

Patch by Dawit Alemayehu <[email protected]> on 2011-08-05
Reviewed by Andreas Kling.

Reverted commit r87797, http://trac.webkit.org/changeset/87797, because it
causes the regression reported under bug# 63582.

[Qt] REGRESSION(r87797): Broke KDEWebKit's custom QNAM.
https://bugs.webkit.org/show_bug.cgi?id=63582

* WebCoreSupport/FrameLoaderClientQt.cpp:
(WebCore::FrameLoaderClientQt::setFrame):

Modified Paths

Diff

Modified: trunk/Source/WebKit/qt/ChangeLog (92478 => 92479)


--- trunk/Source/WebKit/qt/ChangeLog	2011-08-05 14:03:41 UTC (rev 92478)
+++ trunk/Source/WebKit/qt/ChangeLog	2011-08-05 14:17:23 UTC (rev 92479)
@@ -1,3 +1,16 @@
+2011-08-05  Dawit Alemayehu  <[email protected]>
+
+        Reviewed by Andreas Kling.
+
+        Reverted commit r87797, http://trac.webkit.org/changeset/87797, because it
+        causes the regression reported under bug# 63582.
+
+        [Qt] REGRESSION(r87797): Broke KDEWebKit's custom QNAM.
+        https://bugs.webkit.org/show_bug.cgi?id=63582
+
+        * WebCoreSupport/FrameLoaderClientQt.cpp:
+        (WebCore::FrameLoaderClientQt::setFrame):
+
 2011-08-03  Pavel Feldman  <[email protected]>
 
         Web Inspector: [Timeline] Hover on paint events and see rect outline around that area.

Modified: trunk/Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp (92478 => 92479)


--- trunk/Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp	2011-08-05 14:03:41 UTC (rev 92478)
+++ trunk/Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp	2011-08-05 14:17:23 UTC (rev 92479)
@@ -232,10 +232,8 @@
     connect(this, SIGNAL(loadProgress(int)),
             m_webFrame->page(), SIGNAL(loadProgress(int)));
 
-    // FIXME: The queued connection here is needed because of a problem with QNetworkAccessManager.
-    //        See http://bugreports.qt.nokia.com/browse/QTBUG-18718
     connect(this, SIGNAL(unsupportedContent(QNetworkReply*)),
-            m_webFrame->page(), SIGNAL(unsupportedContent(QNetworkReply*)), Qt::QueuedConnection);
+            m_webFrame->page(), SIGNAL(unsupportedContent(QNetworkReply*)));
 
     connect(this, SIGNAL(titleChanged(QString)),
             m_webFrame, SIGNAL(titleChanged(QString)));
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to