[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 05:55:18 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 8d41cda07899ad65d0316d77d846a388c3a9f1d6
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Feb 7 02:15:47 2002 +0000

    Fixed comment.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@599 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/WebView.subproj/IFWebController.h b/WebKit/WebView.subproj/IFWebController.h
index 62409e2..b31bed8 100644
--- a/WebKit/WebView.subproj/IFWebController.h
+++ b/WebKit/WebView.subproj/IFWebController.h
@@ -83,48 +83,6 @@
 @class IFWebView;
 @class IFWebFrame;
 
-#ifdef TENTATIVE_API
-/*
-   ============================================================================= 
-
-    IFWebViewDelegates implement protocols that modify the behavior of
-    IFWebViews.  A IFWebView does not require a delegate.
-*/
- at protocol IFWebViewDelegate <?>
- at end
-
-
-/*
-   ============================================================================= 
-
-    IFWebDataSourceDelegate implement protocols that modify the behavior of
-    IFWebDataSources.  A IFWebDataSources does not require a delegate.
-*/
- at protocol IFWebDataSourceDelegate <?>
- at end
-
-
-/*
-   ============================================================================= 
-
-    See the comments in IFWebPageView above for more description about this protocol.
-*/
- at protocol IFLocationChangeHandler
-
-- (BOOL)locationWillChangeTo: (NSURL *)url;
-
-- (void)locationChangeStarted;
-- (void)locationChangeInProgress;
-- (void)locationChangeDone: (IFError *)error;
-
-- (void)receivedPageTitle: (NSString *)title;
-
-- (void)serverRedirectTo: (NSURL *)url;
-
- at end
-#endif
-
-
 /*
    ============================================================================= 
 
@@ -134,6 +92,10 @@
 */
 @protocol IFLocationChangeHandler
 
+// This API will need to be extended to support some notion of the context in which
+// a location is changing, i.e. was it initiated by a user click, by a programmatic
+// manipulation of the DOM, is the frame an iframe, or a frame.
+
 // locationWillChangeTo: is required, but will it be sent by the dataSource?  More
 // likely the controller will receive a change request from the view.  That argues for
 // placing locationWillChangeTo: in a different protocol, and making it more or a complete
diff --git a/WebKit/WebView.subproj/WebController.h b/WebKit/WebView.subproj/WebController.h
index 62409e2..b31bed8 100644
--- a/WebKit/WebView.subproj/WebController.h
+++ b/WebKit/WebView.subproj/WebController.h
@@ -83,48 +83,6 @@
 @class IFWebView;
 @class IFWebFrame;
 
-#ifdef TENTATIVE_API
-/*
-   ============================================================================= 
-
-    IFWebViewDelegates implement protocols that modify the behavior of
-    IFWebViews.  A IFWebView does not require a delegate.
-*/
- at protocol IFWebViewDelegate <?>
- at end
-
-
-/*
-   ============================================================================= 
-
-    IFWebDataSourceDelegate implement protocols that modify the behavior of
-    IFWebDataSources.  A IFWebDataSources does not require a delegate.
-*/
- at protocol IFWebDataSourceDelegate <?>
- at end
-
-
-/*
-   ============================================================================= 
-
-    See the comments in IFWebPageView above for more description about this protocol.
-*/
- at protocol IFLocationChangeHandler
-
-- (BOOL)locationWillChangeTo: (NSURL *)url;
-
-- (void)locationChangeStarted;
-- (void)locationChangeInProgress;
-- (void)locationChangeDone: (IFError *)error;
-
-- (void)receivedPageTitle: (NSString *)title;
-
-- (void)serverRedirectTo: (NSURL *)url;
-
- at end
-#endif
-
-
 /*
    ============================================================================= 
 
@@ -134,6 +92,10 @@
 */
 @protocol IFLocationChangeHandler
 
+// This API will need to be extended to support some notion of the context in which
+// a location is changing, i.e. was it initiated by a user click, by a programmatic
+// manipulation of the DOM, is the frame an iframe, or a frame.
+
 // locationWillChangeTo: is required, but will it be sent by the dataSource?  More
 // likely the controller will receive a change request from the view.  That argues for
 // placing locationWillChangeTo: in a different protocol, and making it more or a complete
diff --git a/WebKit/WebView.subproj/WebView.h b/WebKit/WebView.subproj/WebView.h
index 62409e2..b31bed8 100644
--- a/WebKit/WebView.subproj/WebView.h
+++ b/WebKit/WebView.subproj/WebView.h
@@ -83,48 +83,6 @@
 @class IFWebView;
 @class IFWebFrame;
 
-#ifdef TENTATIVE_API
-/*
-   ============================================================================= 
-
-    IFWebViewDelegates implement protocols that modify the behavior of
-    IFWebViews.  A IFWebView does not require a delegate.
-*/
- at protocol IFWebViewDelegate <?>
- at end
-
-
-/*
-   ============================================================================= 
-
-    IFWebDataSourceDelegate implement protocols that modify the behavior of
-    IFWebDataSources.  A IFWebDataSources does not require a delegate.
-*/
- at protocol IFWebDataSourceDelegate <?>
- at end
-
-
-/*
-   ============================================================================= 
-
-    See the comments in IFWebPageView above for more description about this protocol.
-*/
- at protocol IFLocationChangeHandler
-
-- (BOOL)locationWillChangeTo: (NSURL *)url;
-
-- (void)locationChangeStarted;
-- (void)locationChangeInProgress;
-- (void)locationChangeDone: (IFError *)error;
-
-- (void)receivedPageTitle: (NSString *)title;
-
-- (void)serverRedirectTo: (NSURL *)url;
-
- at end
-#endif
-
-
 /*
    ============================================================================= 
 
@@ -134,6 +92,10 @@
 */
 @protocol IFLocationChangeHandler
 
+// This API will need to be extended to support some notion of the context in which
+// a location is changing, i.e. was it initiated by a user click, by a programmatic
+// manipulation of the DOM, is the frame an iframe, or a frame.
+
 // locationWillChangeTo: is required, but will it be sent by the dataSource?  More
 // likely the controller will receive a change request from the view.  That argues for
 // placing locationWillChangeTo: in a different protocol, and making it more or a complete

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list