[Qt] Debug build fails with debug qt5
authorostapenko.viatcheslav@nokia.com <ostapenko.viatcheslav@nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 18 Jan 2012 00:10:53 +0000 (00:10 +0000)
committerostapenko.viatcheslav@nokia.com <ostapenko.viatcheslav@nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 18 Jan 2012 00:10:53 +0000 (00:10 +0000)
https://bugs.webkit.org/show_bug.cgi?id=76463

Reviewed by Simon Hausmann.

Add QNetworkCookie include in order to satisfy sizeof in QTypeInfo in debug builds.

Source/WebKit/qt:

* WebCoreSupport/FrameNetworkingContextQt.cpp:

Tools:

* QtTestBrowser/cookiejar.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@105206 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebKit/qt/ChangeLog
Source/WebKit/qt/WebCoreSupport/FrameNetworkingContextQt.cpp
Tools/ChangeLog
Tools/QtTestBrowser/cookiejar.h

index 6335694..8a50f65 100644 (file)
@@ -1,3 +1,14 @@
+2012-01-17  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
+
+        [Qt] Debug build fails with debug qt5
+        https://bugs.webkit.org/show_bug.cgi?id=76463
+
+        Reviewed by Simon Hausmann.
+
+        Add QNetworkCookie include in order to satisfy sizeof in QTypeInfo in debug builds.
+
+        * WebCoreSupport/FrameNetworkingContextQt.cpp:
+
 2012-01-13  Marcelo Lira  <marcelo.lira@openbossa.org>
 
         [Qt] Fix missing signal in qwebframe API test for Qt5
index 02b64a4..7e99624 100644 (file)
@@ -25,6 +25,7 @@
 #include "qwebframe_p.h"
 #include "qwebpage.h"
 #include <QNetworkAccessManager>
+#include <QNetworkCookie>
 #include <QNetworkCookieJar>
 
 namespace WebCore {
index e7fee55..11cd4d5 100644 (file)
@@ -1,3 +1,14 @@
+2012-01-17  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
+
+        [Qt] Debug build fails with debug qt5
+        https://bugs.webkit.org/show_bug.cgi?id=76463
+
+        Reviewed by Simon Hausmann.
+
+        Add QNetworkCookie include in order to satisfy sizeof in QTypeInfo in debug builds.
+
+        * QtTestBrowser/cookiejar.h:
+
 2012-01-17  Dirk Pranke  <dpranke@chromium.org>
 
         webkitpy: fix json import on linux
index ad6bd3c..6e5e73b 100644 (file)
@@ -29,6 +29,7 @@
 #define cookiejar_h
 
 #include <QFile>
+#include <QNetworkCookie>
 #include <QNetworkCookieJar>
 #include <QTimer>