Title: [207415] trunk/Source/WebKit/mac
Revision
207415
Author
ander...@apple.com
Date
2016-10-17 10:59:04 -0700 (Mon, 17 Oct 2016)

Log Message

Remove WEBCORE_EXPORT from BackForwardList, it lives in WebKit now
https://bugs.webkit.org/show_bug.cgi?id=163551

Reviewed by Tim Horton.

* History/BackForwardList.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (207414 => 207415)


--- trunk/Source/WebKit/mac/ChangeLog	2016-10-17 17:49:14 UTC (rev 207414)
+++ trunk/Source/WebKit/mac/ChangeLog	2016-10-17 17:59:04 UTC (rev 207415)
@@ -1,3 +1,12 @@
+2016-10-17  Anders Carlsson  <ander...@apple.com>
+
+        Remove WEBCORE_EXPORT from BackForwardList, it lives in WebKit now
+        https://bugs.webkit.org/show_bug.cgi?id=163551
+
+        Reviewed by Tim Horton.
+
+        * History/BackForwardList.h:
+
 2016-10-16  Darin Adler  <da...@apple.com>
 
         Move CSS classes from ExceptionCode to Exception

Modified: trunk/Source/WebKit/mac/History/BackForwardList.h (207414 => 207415)


--- trunk/Source/WebKit/mac/History/BackForwardList.h	2016-10-17 17:49:14 UTC (rev 207414)
+++ trunk/Source/WebKit/mac/History/BackForwardList.h	2016-10-17 17:59:04 UTC (rev 207415)
@@ -43,31 +43,31 @@
     WebView *webView() { return m_webView; }
 
     void addItem(Ref<WebCore::HistoryItem>&&) override;
-    WEBCORE_EXPORT void goBack();
-    WEBCORE_EXPORT void goForward();
+    void goBack();
+    void goForward();
     void goToItem(WebCore::HistoryItem*) override;
         
-    WEBCORE_EXPORT WebCore::HistoryItem* backItem();
-    WEBCORE_EXPORT WebCore::HistoryItem* currentItem();
-    WEBCORE_EXPORT WebCore::HistoryItem* forwardItem();
+    WebCore::HistoryItem* backItem();
+    WebCore::HistoryItem* currentItem();
+    WebCore::HistoryItem* forwardItem();
     WebCore::HistoryItem* itemAtIndex(int) override;
 
-    WEBCORE_EXPORT void backListWithLimit(int, Vector<Ref<WebCore::HistoryItem>>&);
-    WEBCORE_EXPORT void forwardListWithLimit(int, Vector<Ref<WebCore::HistoryItem>>&);
+    void backListWithLimit(int, Vector<Ref<WebCore::HistoryItem>>&);
+    void forwardListWithLimit(int, Vector<Ref<WebCore::HistoryItem>>&);
 
-    WEBCORE_EXPORT int capacity();
-    WEBCORE_EXPORT void setCapacity(int);
-    WEBCORE_EXPORT bool enabled();
-    WEBCORE_EXPORT void setEnabled(bool);
+    int capacity();
+    void setCapacity(int);
+    bool enabled();
+    void setEnabled(bool);
     int backListCount() override;
     int forwardListCount() override;
-    WEBCORE_EXPORT bool containsItem(WebCore::HistoryItem*);
+    bool containsItem(WebCore::HistoryItem*);
 
     void close() override;
-    WEBCORE_EXPORT bool closed();
+    bool closed();
 
-    WEBCORE_EXPORT void removeItem(WebCore::HistoryItem*);
-    WEBCORE_EXPORT Vector<Ref<WebCore::HistoryItem>>& entries();
+    void removeItem(WebCore::HistoryItem*);
+    Vector<Ref<WebCore::HistoryItem>>& entries();
 
 #if PLATFORM(IOS)
     unsigned current();
@@ -75,7 +75,7 @@
 #endif
 
 private:
-    WEBCORE_EXPORT explicit BackForwardList(WebView *);
+    explicit BackForwardList(WebView *);
 
     WebView* m_webView;
     Vector<Ref<WebCore::HistoryItem>> m_entries;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to