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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:32:20 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit dab26470333aeb8571b26d1cbd38dfb3a8eab8d3
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Aug 17 03:08:56 2002 +0000

    	Missed one call to [WebResourceHandle initWithURL:].
            * WebCoreSupport.subproj/WebBridge.m: (-[WebBridge objectLoadedFromCache:size:]):
            Change to call [WebResourceHandle initWithClient:URL:] with nil for the client.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1857 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 60c17c6..fe4f503 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,11 @@
 2002-08-16  Darin Adler  <darin at apple.com>
 
+	Missed one call to [WebResourceHandle initWithURL:].
+        * WebCoreSupport.subproj/WebBridge.m: (-[WebBridge objectLoadedFromCache:size:]):
+        Change to call [WebResourceHandle initWithClient:URL:] with nil for the client.
+
+2002-08-16  Darin Adler  <darin at apple.com>
+
 	Oops. Forgot to save in Project Builder before committing.
 
         * Plugins.subproj/WebPluginStream.m:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 60c17c6..fe4f503 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,11 @@
 2002-08-16  Darin Adler  <darin at apple.com>
 
+	Missed one call to [WebResourceHandle initWithURL:].
+        * WebCoreSupport.subproj/WebBridge.m: (-[WebBridge objectLoadedFromCache:size:]):
+        Change to call [WebResourceHandle initWithClient:URL:] with nil for the client.
+
+2002-08-16  Darin Adler  <darin at apple.com>
+
 	Oops. Forgot to save in Project Builder before committing.
 
         * Plugins.subproj/WebPluginStream.m:
diff --git a/WebKit/WebCoreSupport.subproj/WebBridge.m b/WebKit/WebCoreSupport.subproj/WebBridge.m
index c018fda..635574a 100644
--- a/WebKit/WebCoreSupport.subproj/WebBridge.m
+++ b/WebKit/WebCoreSupport.subproj/WebBridge.m
@@ -186,8 +186,7 @@
 {
     WEBKIT_ASSERT(frame != nil);
 
-    WebResourceHandle *handle = [[WebResourceHandle alloc] initWithURL:URL];
-
+    WebResourceHandle *handle = [[WebResourceHandle alloc] initWithClient:nil URL:URL];
     WebLoadProgress *loadProgress = [[WebLoadProgress alloc] initWithBytesSoFar:bytes totalToLoad:bytes];
     [[frame controller] _receivedProgress:loadProgress forResourceHandle:handle fromDataSource:[self dataSource] complete:YES];
     [loadProgress release];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list