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

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:30:09 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 1bb2e8ce42bcbd79e98bff5102997a0da8cb4c88
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Mar 17 22:19:18 2004 +0000

    	Expose ageLimitDate so that the autocomplete code can access it.
    
            Reviewed by john
    
            * History.subproj/WebHistory.m:
            (-[WebHistory ageLimitDate]):
            * History.subproj/WebHistoryPrivate.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6237 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 84fa2c6..a6f775c 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2004-03-17  David Hyatt  <hyatt at apple.com>
+
+	Expose ageLimitDate so that the autocomplete code can access it.
+	
+        Reviewed by john
+
+        * History.subproj/WebHistory.m:
+        (-[WebHistory ageLimitDate]):
+        * History.subproj/WebHistoryPrivate.h:
+
 2004-03-17  Richard Williamson   <rjw at apple.com>
 
 	Fixed 3591667.  Plugin view is added to view hierarchy before calling init.
diff --git a/WebKit/History.subproj/WebHistory.m b/WebKit/History.subproj/WebHistory.m
index 402cef7..4a7ac3b 100644
--- a/WebKit/History.subproj/WebHistory.m
+++ b/WebKit/History.subproj/WebHistory.m
@@ -774,5 +774,8 @@ static inline bool matchUnicodeLetter(UniChar c, UniChar lowercaseLetter)
     return [_historyPrivate itemForURLString: URLString];
 }
 
-
+- (NSCalendarDate*)ageLimitDate
+{
+    return [_historyPrivate _ageLimitDate];
+}
 @end
diff --git a/WebKit/History.subproj/WebHistoryPrivate.h b/WebKit/History.subproj/WebHistoryPrivate.h
index 96e1757..bb0c9a0 100644
--- a/WebKit/History.subproj/WebHistoryPrivate.h
+++ b/WebKit/History.subproj/WebHistoryPrivate.h
@@ -36,6 +36,8 @@
 - (BOOL)loadFromURL:(NSURL *)URL error:(NSError **)error;
 - (BOOL)saveToURL:(NSURL *)URL error:(NSError **)error;
 
+- (NSCalendarDate*)_ageLimitDate;
+
 @end
 
 @interface WebHistory (WebPrivate)
@@ -47,5 +49,6 @@
 - (WebHistoryItem *)addItemForURL:(NSURL *)URL;
 - (BOOL)containsItemForURLString:(NSString *)URLString;
 - (WebHistoryItem *)_itemForURLString:(NSString *)URLString;
+- (NSCalendarDate*)ageLimitDate;
 
 @end

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list