[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:27:15 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 07c50f62119c84d968056fe4d98f0ca95dac1ae4
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Mar 4 20:38:32 2003 +0000

            Remove initWithURL: and frameName from WebDataSource public API.
    
            Reviewed by trey.
    
            * WebView.subproj/WebDataSource.h:
            * WebView.subproj/WebDataSource.m:
            (-[WebDataSource webFrame]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3742 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 839b2eb..1760e06 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2003-03-04  Richard Williamson   <rjw at apple.com>
+
+        Remove initWithURL: and frameName from WebDataSource public API.
+        
+        Reviewed by trey.
+
+        * WebView.subproj/WebDataSource.h:
+        * WebView.subproj/WebDataSource.m:
+        (-[WebDataSource webFrame]):
+
 2003-03-04  Darin Adler  <darin at apple.com>
 
         * English.lproj/StringsNotToBeLocalized.txt: Updated for recent changes.
diff --git a/WebKit/WebView.subproj/WebDataSource.h b/WebKit/WebView.subproj/WebDataSource.h
index 7aab92c..5ffd0d4 100644
--- a/WebKit/WebView.subproj/WebDataSource.h
+++ b/WebKit/WebView.subproj/WebDataSource.h
@@ -31,14 +31,6 @@
 }
 
 /*!
-    @method initWithURL:
-    @discussion Returns nil if object cannot be initialized due to a malformed URL (RFC 1808).
-    @param URL The URL to use in creating a datasource.
-    @result Returns an initialized WebDataSource.
-*/
-- initWithURL:(NSURL *)URL;
-
-/*!
     @method initWithRequest:
     @abstract The designated initializer for WebDataSource.
     @param request The request to use in creating a datasource.
@@ -141,12 +133,6 @@
 - (NSString *)pageTitle;
 
 /*!
-    @method frameName
-    @result The name of frame that contains this datasource.
-*/
-- (NSString *)frameName;
-
-/*!
     @method fileExtension
     @result The extension based on the MIME type 
 */
diff --git a/WebKit/WebView.subproj/WebDataSource.m b/WebKit/WebView.subproj/WebDataSource.m
index 818bfd0..aba60f7 100644
--- a/WebKit/WebView.subproj/WebDataSource.m
+++ b/WebKit/WebView.subproj/WebDataSource.m
@@ -24,22 +24,6 @@
 
 @implementation WebDataSource
 
--(id)initWithURL:(NSURL *)URL
-{
-    id result = nil;
-
-    WebRequest *request = [[WebRequest alloc] initWithURL:URL];
-    if (request) {
-        result = [self initWithRequest:request];
-        [request release];
-    }
-    else {
-        [self release];
-    }
-    
-    return result;
-}
-
 -(id)initWithRequest:(WebRequest *)request
 {
     self = [super init];
@@ -85,13 +69,6 @@
     return _private->webFrame;
 }
 
-// Returns the name of the frame containing this data source, or nil
-// if the data source is not in a frame set.
-- (NSString *)frameName 
-{
-    return [[self webFrame] name];    
-}
-
 - (WebController *)controller
 {
     // All data sources used in a document share the same controller.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list