From: hausmann@webkit.org Date: Thu, 17 Jan 2008 11:48:18 +0000 (+0000) Subject: 2008-01-17 Simon Hausmann X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=8a9ab3e4d43fc6149195410777c58e9b706ab3d9 2008-01-17 Simon Hausmann MSVC Windows build fix. Forward declaring Document in CookieJar.h seems not enough for MSVC. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@29567 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog index a0b179c4fe99..d37a610a83fe 100644 --- a/WebCore/ChangeLog +++ b/WebCore/ChangeLog @@ -1,3 +1,10 @@ +2008-01-17 Simon Hausmann + + MSVC Windows build fix. Forward declaring Document in CookieJar.h + seems not enough for MSVC. + + * platform/network/win/CookieJarWin.cpp: + 2008-01-17 Simon Hausmann Reviewed by Maciej, Lars, Holger. diff --git a/WebCore/platform/network/win/CookieJarWin.cpp b/WebCore/platform/network/win/CookieJarWin.cpp index 90136af70630..8a5d574a8267 100644 --- a/WebCore/platform/network/win/CookieJarWin.cpp +++ b/WebCore/platform/network/win/CookieJarWin.cpp @@ -27,6 +27,7 @@ #include "KURL.h" #include "PlatformString.h" #include "DeprecatedString.h" +#include "Document.h" #include "ResourceHandle.h" #include #if USE(CFNETWORK)