[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:37:38 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 3bee2e7c09b664f8ebe5413c9a7a463bdb6d9c8d
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 9 21:52:39 2002 +0000

    	Missed one call through asking WebResourceHandle for contentLength
    	instead of WebResourceResponse.
    
            * Plugins.subproj/WebPluginStream.m:
            (-[WebNetscapePluginStream receivedData:withHandle:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2013 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 76844d2..25620bb 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,13 @@
 2002-09-09  ken  <kocienda at apple.com>
 
+	Missed one call through asking WebResourceHandle for contentLength
+	instead of WebResourceResponse.
+
+        * Plugins.subproj/WebPluginStream.m:
+        (-[WebNetscapePluginStream receivedData:withHandle:]):
+
+2002-09-09  ken  <kocienda at apple.com>
+
 	Content length information now accessible via WebResourceResponse object,
         rather than from WebResourceHandle.
 
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 76844d2..25620bb 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-09-09  ken  <kocienda at apple.com>
 
+	Missed one call through asking WebResourceHandle for contentLength
+	instead of WebResourceResponse.
+
+        * Plugins.subproj/WebPluginStream.m:
+        (-[WebNetscapePluginStream receivedData:withHandle:]):
+
+2002-09-09  ken  <kocienda at apple.com>
+
 	Content length information now accessible via WebResourceResponse object,
         rather than from WebResourceHandle.
 
diff --git a/WebKit/Plugins.subproj/WebPluginStream.m b/WebKit/Plugins.subproj/WebPluginStream.m
index 9c567bc..0a5062b 100644
--- a/WebKit/Plugins.subproj/WebPluginStream.m
+++ b/WebKit/Plugins.subproj/WebPluginStream.m
@@ -141,7 +141,7 @@
         
         npStream.ndata = self;
         npStream.URL = cURL;
-        npStream.end = [handle contentLength];
+        npStream.end = [[handle response] contentLength];
         npStream.lastmodified = lastModified;
         npStream.notifyData = notifyData;
         

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list