[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:44:32 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9623a2d8c5387602f2cb24bea55a69124faa1f2a
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Sep 25 14:18:57 2002 +0000

    WebFoundation:
    
    	More moves to the new WebResourceHandleDelegate API.
    
            This change moves all WebResourceHandleDelegate implementors to:
    
    	-(void)handle:(WebResourceHandle *)handle didReceiveData:(NSData *)data;
    
            * CacheLoader.subproj/WebResourceCallbackClient.m:
            (-[WebResourceCallbackClient handle:didReceiveData:])
            * CacheLoader.subproj/WebResourceHandleInternal.m:
            (-[WebResourceHandle _notifyClientDataDidBecomeAvailable])
            * CacheLoader.subproj/WebResourceSynchronousClient.m:
            (-[WebResourceHandleSynchronousDelegate handle:didReceiveData:])
    
    WebKit:
    
            More moves to the new WebResourceHandleDelegate API.
    
            This change moves all WebResourceHandleDelegate implementors to:
    
            -(void)handle:(WebResourceHandle *)handle didReceiveData:(NSData *)data;
    
            * Misc.subproj/WebIconLoader.m:
            (-[WebIconLoader handle:didReceiveData:])
            * Plugins.subproj/WebPluginStream.m:
            (-[WebNetscapePluginStream handle:didReceiveData:])
            * WebCoreSupport.subproj/WebSubresourceClient.m:
            (-[WebSubresourceClient handle:didReceiveData:])
            * WebView.subproj/WebMainResourceClient.m:
            (-[WebMainResourceClient handle:didReceiveData:])
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2161 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index bb5088c..a72f1e5 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,22 @@
 2002-09-25  Ken Kocienda  <kocienda at apple.com>
 
+        More moves to the new WebResourceHandleDelegate API.   
+
+        This change moves all WebResourceHandleDelegate implementors to:
+
+        -(void)handle:(WebResourceHandle *)handle didReceiveData:(NSData *)data;
+
+        * Misc.subproj/WebIconLoader.m:
+        (-[WebIconLoader handle:didReceiveData:])
+        * Plugins.subproj/WebPluginStream.m:
+        (-[WebNetscapePluginStream handle:didReceiveData:])
+        * WebCoreSupport.subproj/WebSubresourceClient.m:
+        (-[WebSubresourceClient handle:didReceiveData:])
+        * WebView.subproj/WebMainResourceClient.m:
+        (-[WebMainResourceClient handle:didReceiveData:])
+
+2002-09-25  Ken Kocienda  <kocienda at apple.com>
+
         Moving to the new WebResourceHandleDelegate API.
 
         This change moves all WebResourceHandleDelegate implementors to:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index bb5088c..a72f1e5 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,22 @@
 2002-09-25  Ken Kocienda  <kocienda at apple.com>
 
+        More moves to the new WebResourceHandleDelegate API.   
+
+        This change moves all WebResourceHandleDelegate implementors to:
+
+        -(void)handle:(WebResourceHandle *)handle didReceiveData:(NSData *)data;
+
+        * Misc.subproj/WebIconLoader.m:
+        (-[WebIconLoader handle:didReceiveData:])
+        * Plugins.subproj/WebPluginStream.m:
+        (-[WebNetscapePluginStream handle:didReceiveData:])
+        * WebCoreSupport.subproj/WebSubresourceClient.m:
+        (-[WebSubresourceClient handle:didReceiveData:])
+        * WebView.subproj/WebMainResourceClient.m:
+        (-[WebMainResourceClient handle:didReceiveData:])
+
+2002-09-25  Ken Kocienda  <kocienda at apple.com>
+
         Moving to the new WebResourceHandleDelegate API.
 
         This change moves all WebResourceHandleDelegate implementors to:
diff --git a/WebKit/Misc.subproj/WebIconLoader.m b/WebKit/Misc.subproj/WebIconLoader.m
index 1ac81ce..f84e2e8 100644
--- a/WebKit/Misc.subproj/WebIconLoader.m
+++ b/WebKit/Misc.subproj/WebIconLoader.m
@@ -113,7 +113,7 @@
     }
 }
 
-- (void)handleDidReceiveData:(WebResourceHandle *)sender data:(NSData *)data
+- (void)handle:(WebResourceHandle *)sender didReceiveData:(NSData *)data
 {
     [_private->resourceData appendData:data];
 }
diff --git a/WebKit/Plugins.subproj/WebPluginStream.m b/WebKit/Plugins.subproj/WebPluginStream.m
index 4b55fc4..a1d46b6 100644
--- a/WebKit/Plugins.subproj/WebPluginStream.m
+++ b/WebKit/Plugins.subproj/WebPluginStream.m
@@ -280,7 +280,7 @@
     return [[view webController] userAgentForURL:theURL];
 }
 
-- (void)handleDidReceiveData:(WebResourceHandle *)handle data:(NSData *)data
+- (void)handle:(WebResourceHandle *)handle didReceiveData:(NSData *)data
 {
     ASSERT(resource == handle);
 
diff --git a/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m b/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
index 5b2754f..bce20cd 100644
--- a/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
+++ b/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
@@ -110,7 +110,7 @@
     return [[dataSource controller] userAgentForURL:URL];
 }
 
-- (void)handleDidReceiveData:(WebResourceHandle *)h data:(NSData *)data
+- (void)handle:(WebResourceHandle *)h didReceiveData:(NSData *)data
 {
     ASSERT(handle == h);
     ASSERT([currentURL isEqual:[handle URL]]);
diff --git a/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m b/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
index 5b2754f..bce20cd 100644
--- a/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
+++ b/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
@@ -110,7 +110,7 @@
     return [[dataSource controller] userAgentForURL:URL];
 }
 
-- (void)handleDidReceiveData:(WebResourceHandle *)h data:(NSData *)data
+- (void)handle:(WebResourceHandle *)h didReceiveData:(NSData *)data
 {
     ASSERT(handle == h);
     ASSERT([currentURL isEqual:[handle URL]]);
diff --git a/WebKit/WebView.subproj/WebMainResourceClient.m b/WebKit/WebView.subproj/WebMainResourceClient.m
index d62a7c2..68dba85 100644
--- a/WebKit/WebView.subproj/WebMainResourceClient.m
+++ b/WebKit/WebView.subproj/WebMainResourceClient.m
@@ -195,7 +195,7 @@
     [self release];
 }
 
-- (void)handleDidReceiveData:(WebResourceHandle *)handle data:(NSData *)data
+- (void)handle:(WebResourceHandle *)handle didReceiveData:(NSData *)data
 {
     WebController *controller = [dataSource controller];
     NSString *contentType = [[handle response] contentType];
diff --git a/WebKit/WebView.subproj/WebMainResourceLoader.m b/WebKit/WebView.subproj/WebMainResourceLoader.m
index d62a7c2..68dba85 100644
--- a/WebKit/WebView.subproj/WebMainResourceLoader.m
+++ b/WebKit/WebView.subproj/WebMainResourceLoader.m
@@ -195,7 +195,7 @@
     [self release];
 }
 
-- (void)handleDidReceiveData:(WebResourceHandle *)handle data:(NSData *)data
+- (void)handle:(WebResourceHandle *)handle didReceiveData:(NSData *)data
 {
     WebController *controller = [dataSource controller];
     NSString *contentType = [[handle response] contentType];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list