Title: [159434] trunk/Source/WebKit/mac
Revision
159434
Author
[email protected]
Date
2013-11-18 10:42:34 -0800 (Mon, 18 Nov 2013)

Log Message

Ignore deprecation warnings for now.

* History/WebHistory.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (159433 => 159434)


--- trunk/Source/WebKit/mac/ChangeLog	2013-11-18 18:35:41 UTC (rev 159433)
+++ trunk/Source/WebKit/mac/ChangeLog	2013-11-18 18:42:34 UTC (rev 159434)
@@ -1,3 +1,9 @@
+2013-11-18  Anders Carlsson  <[email protected]>
+
+        Ignore deprecation warnings for now.
+
+        * History/WebHistory.h:
+
 2013-11-14  Anders Carlsson  <[email protected]>
 
         Reimplement getDayBoundaries using NSCalendar on 10.9

Modified: trunk/Source/WebKit/mac/History/WebHistory.h (159433 => 159434)


--- trunk/Source/WebKit/mac/History/WebHistory.h	2013-11-18 18:35:41 UTC (rev 159433)
+++ trunk/Source/WebKit/mac/History/WebHistory.h	2013-11-18 18:42:34 UTC (rev 159434)
@@ -125,7 +125,10 @@
     @param calendarDate A date identifying the unique day of interest.
     @result Returns an array of WebHistoryItems last visited on the indicated day.
 */
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wdeprecated-declarations"
 - (NSArray *)orderedItemsLastVisitedOnDay:(NSCalendarDate *)calendarDate;
+#pragma clang diagnostic pop
 
 /*!
     @method itemForURL:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to