[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 05:52:13 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 5cbf163131b8750ce29a09d0132b8d84637313a5
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Nov 12 21:39:13 2001 +0000

    - Eliminated WCURICacheJobID class. It was on its way to being obsolete, and
    I finally did it in.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@442 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/include/WCURICache.h b/WebCore/include/WCURICache.h
index 7cf89ac..9c236ad 100644
--- a/WebCore/include/WCURICache.h
+++ b/WebCore/include/WCURICache.h
@@ -6,8 +6,8 @@
 
 @protocol WCURICache 
 
--(NSString *)requestWithURL:(NSURL *)url requestor:(id)requestor userData:(void *)userData;
--(NSString *)requestWithString:(NSString *)uriString requestor:(id)requestor userData:(void *)userData;
+-(void)requestWithURL:(NSURL *)url requestor:(id)requestor userData:(void *)userData;
+-(void)requestWithString:(NSString *)uriString requestor:(id)requestor userData:(void *)userData;
 
 -(void)cancelRequestWithURL:(NSURL *)url requestor:(id)requestor;
 -(void)cancelRequestWithString:(NSString *)uriString requestor:(id)requestor;
diff --git a/WebCore/include/WCURICacheData.h b/WebCore/include/WCURICacheData.h
index d173687..f1f1b9d 100644
--- a/WebCore/include/WCURICacheData.h
+++ b/WebCore/include/WCURICacheData.h
@@ -6,11 +6,10 @@
 
 @protocol WCURICacheData
 
--(id)jobID;
+-(NSURL *)url;
 -(id)status;
 -(id)error;
--(NSURL *)url;
--(unsigned char *)cacheData;
+-(UInt8 *)cacheData;
 -(int)cacheDataSize;
 -(void *)userData;
 
diff --git a/WebCore/include/WCURICacheJobID.h b/WebCore/include/WCURICacheJobID.h
deleted file mode 100644
index 6c8dc69..0000000
--- a/WebCore/include/WCURICacheJobID.h
+++ /dev/null
@@ -1,9 +0,0 @@
-/*	WCURICacheJobID.h
-	Copyright 2001, Apple, Inc. All rights reserved.
-*/
-
-#import <Foundation/Foundation.h>
-
-
- at protocol WCURICacheJobID
- at end

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list