[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

andersca at apple.com andersca at apple.com
Wed Dec 22 11:14:42 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit f0b07482db918c160d1c98de6979f77b5894e7ea
Author: andersca at apple.com <andersca at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 15 22:11:04 2010 +0000

    Attempt to fix the Windows build.
    
    * WebProcess/Plugins/PluginView.cpp:
    (WebKit::PluginView::Stream::didReceiveResponse):
    expectedContentLength should be a signed long long.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63471 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index b613a00..8fa95c5 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,5 +1,13 @@
 2010-07-15  Anders Carlsson  <andersca at apple.com>
 
+        Attempt to fix the Windows build.
+
+        * WebProcess/Plugins/PluginView.cpp:
+        (WebKit::PluginView::Stream::didReceiveResponse):
+        expectedContentLength should be a signed long long.
+
+2010-07-15  Anders Carlsson  <andersca at apple.com>
+
         Reviewed by Sam Weinig.
 
         Start loading plug-in streams
diff --git a/WebKit2/WebProcess/Plugins/PluginView.cpp b/WebKit2/WebProcess/Plugins/PluginView.cpp
index 0ff2c89..abdf177 100644
--- a/WebKit2/WebProcess/Plugins/PluginView.cpp
+++ b/WebKit2/WebProcess/Plugins/PluginView.cpp
@@ -117,7 +117,7 @@ void PluginView::Stream::didReceiveResponse(NetscapePlugInStreamLoader*, const R
     // Compute the stream related data from the resource response.
     const KURL& responseURL = response.url();
     const String& mimeType = response.mimeType();
-    unsigned long long expectedContentLength = response.expectedContentLength();
+    long long expectedContentLength = response.expectedContentLength();
     
     String headers;
     if (response.isHTTP()) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list