[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:31 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 1d9d152fbd89f240569fc7ab4e4b8d37761fd83b
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Sep 25 14:02:22 2002 +0000
WebFoundation:
Moving to the new WebResourceHandleDelegate API.
This change moves all WebResourceHandleDelegate implementors to:
- (void)handle:(WebResourceHandle *)handle didFailLoadingWithError:(WebError *)result;
* CacheLoader.subproj/WebResourceCallbackClient.m:
* CacheLoader.subproj/WebResourceHandleInternal.m:
(-[WebResourceHandle _notifyClientDidFailLoading])
* CacheLoader.subproj/WebResourceSynchronousClient.m:
WebKit:
Moving to the new WebResourceHandleDelegate API.
This change moves all WebResourceHandleDelegate implementors to:
- (void)handle:(WebResourceHandle *)handle didFailLoadingWithError:(WebError *)result;
* Misc.subproj/WebIconLoader.m:
(-[WebIconLoader handle:didFailLoadingWithError:])
* Plugins.subproj/WebPluginStream.m:
(-[WebNetscapePluginStream handle:didFailLoadingWithError:])
* WebCoreSupport.subproj/WebSubresourceClient.m:
(-[WebSubresourceClient handle:didFailLoadingWithError:])
* WebView.subproj/WebMainResourceClient.m:
(-[WebMainResourceClient handle:didFailLoadingWithError:])
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2160 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 6c42a39..bb5088c 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,22 @@
2002-09-25 Ken Kocienda <kocienda at apple.com>
+ Moving to the new WebResourceHandleDelegate API.
+
+ This change moves all WebResourceHandleDelegate implementors to:
+
+ - (void)handle:(WebResourceHandle *)handle didFailLoadingWithError:(WebError *)result;
+
+ * Misc.subproj/WebIconLoader.m:
+ (-[WebIconLoader handle:didFailLoadingWithError:])
+ * Plugins.subproj/WebPluginStream.m:
+ (-[WebNetscapePluginStream handle:didFailLoadingWithError:])
+ * WebCoreSupport.subproj/WebSubresourceClient.m:
+ (-[WebSubresourceClient handle:didFailLoadingWithError:])
+ * WebView.subproj/WebMainResourceClient.m:
+ (-[WebMainResourceClient handle:didFailLoadingWithError:])
+
+2002-09-25 Ken Kocienda <kocienda at apple.com>
+
Begin change from WebResourceClient to WebResourceHandleDelegate.
In this step, I have just changed the name of the protocol; the
protocol interface is the same.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 6c42a39..bb5088c 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>
+ Moving to the new WebResourceHandleDelegate API.
+
+ This change moves all WebResourceHandleDelegate implementors to:
+
+ - (void)handle:(WebResourceHandle *)handle didFailLoadingWithError:(WebError *)result;
+
+ * Misc.subproj/WebIconLoader.m:
+ (-[WebIconLoader handle:didFailLoadingWithError:])
+ * Plugins.subproj/WebPluginStream.m:
+ (-[WebNetscapePluginStream handle:didFailLoadingWithError:])
+ * WebCoreSupport.subproj/WebSubresourceClient.m:
+ (-[WebSubresourceClient handle:didFailLoadingWithError:])
+ * WebView.subproj/WebMainResourceClient.m:
+ (-[WebMainResourceClient handle:didFailLoadingWithError:])
+
+2002-09-25 Ken Kocienda <kocienda at apple.com>
+
Begin change from WebResourceClient to WebResourceHandleDelegate.
In this step, I have just changed the name of the protocol; the
protocol interface is the same.
diff --git a/WebKit/Misc.subproj/WebIconLoader.m b/WebKit/Misc.subproj/WebIconLoader.m
index b3fddbe..1ac81ce 100644
--- a/WebKit/Misc.subproj/WebIconLoader.m
+++ b/WebKit/Misc.subproj/WebIconLoader.m
@@ -118,7 +118,7 @@
[_private->resourceData appendData:data];
}
-- (void)handleDidFailLoading:(WebResourceHandle *)sender withError:(WebError *)result
+- (void)handle:(WebResourceHandle *)sender didFailLoadingWithError:(WebError *)result
{
}
diff --git a/WebKit/Plugins.subproj/WebPluginStream.m b/WebKit/Plugins.subproj/WebPluginStream.m
index a54b464..4b55fc4 100644
--- a/WebKit/Plugins.subproj/WebPluginStream.m
+++ b/WebKit/Plugins.subproj/WebPluginStream.m
@@ -337,7 +337,7 @@
resource = nil;
}
-- (void)handleDidFailLoading:(WebResourceHandle *)handle withError:(WebError *)result
+- (void)handle:(WebResourceHandle *)handle didFailLoadingWithError:(WebError *)result
{
ASSERT(resource == handle);
diff --git a/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m b/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
index 8918ecf..5b2754f 100644
--- a/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
+++ b/WebKit/WebCoreSupport.subproj/WebSubresourceClient.m
@@ -147,7 +147,7 @@
[self release];
}
-- (void)handleDidFailLoading:(WebResourceHandle *)h withError:(WebError *)error
+- (void)handle:(WebResourceHandle *)h didFailLoadingWithError:(WebError *)error
{
ASSERT(handle == h);
ASSERT([currentURL isEqual:[handle URL]]);
diff --git a/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m b/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
index 8918ecf..5b2754f 100644
--- a/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
+++ b/WebKit/WebCoreSupport.subproj/WebSubresourceLoader.m
@@ -147,7 +147,7 @@
[self release];
}
-- (void)handleDidFailLoading:(WebResourceHandle *)h withError:(WebError *)error
+- (void)handle:(WebResourceHandle *)h didFailLoadingWithError:(WebError *)error
{
ASSERT(handle == h);
ASSERT([currentURL isEqual:[handle URL]]);
diff --git a/WebKit/WebView.subproj/WebMainResourceClient.m b/WebKit/WebView.subproj/WebMainResourceClient.m
index 5d06764..d62a7c2 100644
--- a/WebKit/WebView.subproj/WebMainResourceClient.m
+++ b/WebKit/WebView.subproj/WebMainResourceClient.m
@@ -271,7 +271,7 @@
isFirstChunk = NO;
}
-- (void)handleDidFailLoading:(WebResourceHandle *)handle withError:(WebError *)result
+- (void)handle:(WebResourceHandle *)handle didFailLoadingWithError:(WebError *)result
{
LOG(Loading, "URL = %@, result = %@", [handle URL], [result errorDescription]);
diff --git a/WebKit/WebView.subproj/WebMainResourceLoader.m b/WebKit/WebView.subproj/WebMainResourceLoader.m
index 5d06764..d62a7c2 100644
--- a/WebKit/WebView.subproj/WebMainResourceLoader.m
+++ b/WebKit/WebView.subproj/WebMainResourceLoader.m
@@ -271,7 +271,7 @@
isFirstChunk = NO;
}
-- (void)handleDidFailLoading:(WebResourceHandle *)handle withError:(WebError *)result
+- (void)handle:(WebResourceHandle *)handle didFailLoadingWithError:(WebError *)result
{
LOG(Loading, "URL = %@, result = %@", [handle URL], [result errorDescription]);
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list