[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

andersca at apple.com andersca at apple.com
Wed Dec 22 15:45:20 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 2a8cb8fa810a6f07090daa14b9f240cda9465c1c
Author: andersca at apple.com <andersca at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Nov 11 20:59:39 2010 +0000

    Remove an unneeded CFAllocatorRef parameter.
    
    Reviewed by Adam Roben.
    
    * Shared/API/c/mac/WKURLResponseNS.h:
    * Shared/API/c/mac/WKURLResponseNS.mm:
    (WKURLResponseCopyNSURLResponse):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71845 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index bc43c99..69e57e0 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -2,6 +2,16 @@
 
         Reviewed by Adam Roben.
 
+        Remove an unneeded CFAllocatorRef parameter.
+
+        * Shared/API/c/mac/WKURLResponseNS.h:
+        * Shared/API/c/mac/WKURLResponseNS.mm:
+        (WKURLResponseCopyNSURLResponse):
+
+2010-11-11  Anders Carlsson  <andersca at apple.com>
+
+        Reviewed by Adam Roben.
+
         Add and implement WKDownloadCopyRequest
         https://bugs.webkit.org/show_bug.cgi?id=49393
 
diff --git a/WebKit2/Shared/API/c/mac/WKURLResponseNS.h b/WebKit2/Shared/API/c/mac/WKURLResponseNS.h
index 3cdf74c..0bbc149 100644
--- a/WebKit2/Shared/API/c/mac/WKURLResponseNS.h
+++ b/WebKit2/Shared/API/c/mac/WKURLResponseNS.h
@@ -34,7 +34,7 @@ extern "C" {
 #endif
 
 WK_EXPORT WKURLResponseRef WKURLResponseCreateWithNSURLResponse(NSURLResponse* urlResponse);
-WK_EXPORT NSURLResponse* WKURLResponseCopyNSURLResponse(CFAllocatorRef alloc, WKURLResponseRef urlResponse);
+WK_EXPORT NSURLResponse* WKURLResponseCopyNSURLResponse(WKURLResponseRef urlResponse);
 
 #ifdef __cplusplus
 }
diff --git a/WebKit2/Shared/API/c/mac/WKURLResponseNS.mm b/WebKit2/Shared/API/c/mac/WKURLResponseNS.mm
index 81aaa6e..79b874d 100644
--- a/WebKit2/Shared/API/c/mac/WKURLResponseNS.mm
+++ b/WebKit2/Shared/API/c/mac/WKURLResponseNS.mm
@@ -37,7 +37,7 @@ WKURLResponseRef WKURLResponseCreateWithNSURLResponse(NSURLResponse* urlResponse
     return toAPI(response.release().releaseRef());
 }
 
-NSURLResponse* WKURLResponseCopyNSURLResponse(CFAllocatorRef alloc, WKURLResponseRef urlResponse)
+NSURLResponse* WKURLResponseCopyNSURLResponse(WKURLResponseRef urlResponse)
 {
     return [toImpl(urlResponse)->platformResponse() copy];
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list