[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:37:07 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 79f09b6e88fc4a38a89f4a83d167ad137712a097
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Sep 8 23:18:29 2002 +0000

    top level:
    
            * Tests/WebFoundationC/ifurlhandlec-test.c:
            (run): Remove begin and cancel testing.
    
    WebKit:
    
    	Remove empty handleDidBeginLoading and handleDidCancelLoading
    	methods, now that they will never be called.
    
            * Misc.subproj/WebIconLoader.m:
            * Plugins.subproj/WebPluginStream.m:
            * WebCoreSupport.subproj/WebSubresourceClient.m:
            * WebView.subproj/WebMainResourceClient.m:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1997 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 5d832a0..d0ec18e 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,15 @@
 2002-09-08  Darin Adler  <darin at apple.com>
 
+	Remove empty handleDidBeginLoading and handleDidCancelLoading
+	methods, now that they will never be called.
+
+        * Misc.subproj/WebIconLoader.m:
+        * Plugins.subproj/WebPluginStream.m:
+        * WebCoreSupport.subproj/WebSubresourceClient.m:
+        * WebView.subproj/WebMainResourceClient.m:
+
+2002-09-08  Darin Adler  <darin at apple.com>
+
 	Forgot to save out files from the editor in my last change.
 
         * WebView.subproj/WebDataSource.m:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 5d832a0..d0ec18e 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,15 @@
 2002-09-08  Darin Adler  <darin at apple.com>
 
+	Remove empty handleDidBeginLoading and handleDidCancelLoading
+	methods, now that they will never be called.
+
+        * Misc.subproj/WebIconLoader.m:
+        * Plugins.subproj/WebPluginStream.m:
+        * WebCoreSupport.subproj/WebSubresourceClient.m:
+        * WebView.subproj/WebMainResourceClient.m:
+
+2002-09-08  Darin Adler  <darin at apple.com>
+
 	Forgot to save out files from the editor in my last change.
 
         * WebView.subproj/WebDataSource.m:
diff --git a/WebKit/Misc.subproj/WebIconLoader.m b/WebKit/Misc.subproj/WebIconLoader.m
index 6363317..a959852 100644
--- a/WebKit/Misc.subproj/WebIconLoader.m
+++ b/WebKit/Misc.subproj/WebIconLoader.m
@@ -109,14 +109,6 @@
     return nil;
 }
 
-- (void)handleDidBeginLoading:(WebResourceHandle *)sender
-{
-}
-
-- (void)handleDidCancelLoading:(WebResourceHandle *)sender
-{
-}
-
 - (void)handleDidFinishLoading:(WebResourceHandle *)sender
 {
     NSImage *icon = [[NSImage alloc] initWithData:_private->resourceData];
diff --git a/WebKit/Plugins.subproj/WebPluginStream.m b/WebKit/Plugins.subproj/WebPluginStream.m
index 37bbf90..e7d685c 100644
--- a/WebKit/Plugins.subproj/WebPluginStream.m
+++ b/WebKit/Plugins.subproj/WebPluginStream.m
@@ -274,10 +274,6 @@
     return [[view webController] userAgentForURL:theURL];
 }
 
-- (void)handleDidBeginLoading:(WebResourceHandle *)handle
-{
-}
-
 - (void)handleDidReceiveData:(WebResourceHandle *)handle data:(NSData *)data
 {
     ASSERT(resource == handle);
@@ -307,10 +303,6 @@
     resource = nil;
 }
 
-- (void)handleDidCancelLoading:(WebResourceHandle *)handle
-{
-}
-
 - (void)cancel
 {
     if (resource == nil) {
diff --git a/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m b/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
index f225eac..75d4baf 100644
--- a/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
+++ b/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
@@ -105,10 +105,6 @@
     return [[dataSource controller] userAgentForURL:URL];
 }
 
-- (void)handleDidBeginLoading:(WebResourceHandle *)h
-{
-}
-
 - (void)handleDidReceiveData:(WebResourceHandle *)h data:(NSData *)data
 {
     ASSERT(handle == h);
@@ -118,10 +114,6 @@
     [loader addData:data];
 }
 
-- (void)handleDidCancelLoading:(WebResourceHandle *)h
-{
-}
-
 - (void)handleDidFinishLoading:(WebResourceHandle *)h
 {
     ASSERT(handle == h);
diff --git a/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m b/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
index f225eac..75d4baf 100644
--- a/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
+++ b/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
@@ -105,10 +105,6 @@
     return [[dataSource controller] userAgentForURL:URL];
 }
 
-- (void)handleDidBeginLoading:(WebResourceHandle *)h
-{
-}
-
 - (void)handleDidReceiveData:(WebResourceHandle *)h data:(NSData *)data
 {
     ASSERT(handle == h);
@@ -118,10 +114,6 @@
     [loader addData:data];
 }
 
-- (void)handleDidCancelLoading:(WebResourceHandle *)h
-{
-}
-
 - (void)handleDidFinishLoading:(WebResourceHandle *)h
 {
     ASSERT(handle == h);
diff --git a/WebKit/WebView.subproj/WebMainResourceClient.m b/WebKit/WebView.subproj/WebMainResourceClient.m
index 089a0fb..10dbf39 100644
--- a/WebKit/WebView.subproj/WebMainResourceClient.m
+++ b/WebKit/WebView.subproj/WebMainResourceClient.m
@@ -115,10 +115,6 @@
     return [[dataSource controller] userAgentForURL:URL];
 }
 
-- (void)handleDidBeginLoading:(WebResourceHandle *)handle
-{
-}
-
 - (void)didCancelWithHandle:(WebResourceHandle *)handle
 {
     if (currentURL == nil) {
@@ -140,10 +136,6 @@
     [self didStopLoading];
 }
 
-- (void)handleDidCancelLoading:(WebResourceHandle *)handle
-{
-}
-
 - (void)handleDidFinishLoading:(WebResourceHandle *)handle
 {
     WEBKITDEBUGLEVEL(WEBKIT_LOG_LOADING, "URL = %s", DEBUG_OBJECT([handle URL]));
diff --git a/WebKit/WebView.subproj/WebMainResourceLoader.m b/WebKit/WebView.subproj/WebMainResourceLoader.m
index 089a0fb..10dbf39 100644
--- a/WebKit/WebView.subproj/WebMainResourceLoader.m
+++ b/WebKit/WebView.subproj/WebMainResourceLoader.m
@@ -115,10 +115,6 @@
     return [[dataSource controller] userAgentForURL:URL];
 }
 
-- (void)handleDidBeginLoading:(WebResourceHandle *)handle
-{
-}
-
 - (void)didCancelWithHandle:(WebResourceHandle *)handle
 {
     if (currentURL == nil) {
@@ -140,10 +136,6 @@
     [self didStopLoading];
 }
 
-- (void)handleDidCancelLoading:(WebResourceHandle *)handle
-{
-}
-
 - (void)handleDidFinishLoading:(WebResourceHandle *)handle
 {
     WEBKITDEBUGLEVEL(WEBKIT_LOG_LOADING, "URL = %s", DEBUG_OBJECT([handle URL]));

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list