Changeset 207415 in webkit


Ignore:
Timestamp:
Oct 17, 2016 10:59:04 AM (7 years ago)
Author:
andersca@apple.com
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:
Location:
trunk/Source/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/mac/ChangeLog

    r207396 r207415  
     12016-10-17  Anders Carlsson  <andersca@apple.com>
     2
     3        Remove WEBCORE_EXPORT from BackForwardList, it lives in WebKit now
     4        https://bugs.webkit.org/show_bug.cgi?id=163551
     5
     6        Reviewed by Tim Horton.
     7
     8        * History/BackForwardList.h:
     9
    1102016-10-16  Darin Adler  <darin@apple.com>
    211
  • trunk/Source/WebKit/mac/History/BackForwardList.h

    r207352 r207415  
    4444
    4545    void addItem(Ref<WebCore::HistoryItem>&&) override;
    46     WEBCORE_EXPORT void goBack();
    47     WEBCORE_EXPORT void goForward();
     46    void goBack();
     47    void goForward();
    4848    void goToItem(WebCore::HistoryItem*) override;
    4949       
    50     WEBCORE_EXPORT WebCore::HistoryItem* backItem();
    51     WEBCORE_EXPORT WebCore::HistoryItem* currentItem();
    52     WEBCORE_EXPORT WebCore::HistoryItem* forwardItem();
     50    WebCore::HistoryItem* backItem();
     51    WebCore::HistoryItem* currentItem();
     52    WebCore::HistoryItem* forwardItem();
    5353    WebCore::HistoryItem* itemAtIndex(int) override;
    5454
    55     WEBCORE_EXPORT void backListWithLimit(int, Vector<Ref<WebCore::HistoryItem>>&);
    56     WEBCORE_EXPORT void forwardListWithLimit(int, Vector<Ref<WebCore::HistoryItem>>&);
     55    void backListWithLimit(int, Vector<Ref<WebCore::HistoryItem>>&);
     56    void forwardListWithLimit(int, Vector<Ref<WebCore::HistoryItem>>&);
    5757
    58     WEBCORE_EXPORT int capacity();
    59     WEBCORE_EXPORT void setCapacity(int);
    60     WEBCORE_EXPORT bool enabled();
    61     WEBCORE_EXPORT void setEnabled(bool);
     58    int capacity();
     59    void setCapacity(int);
     60    bool enabled();
     61    void setEnabled(bool);
    6262    int backListCount() override;
    6363    int forwardListCount() override;
    64     WEBCORE_EXPORT bool containsItem(WebCore::HistoryItem*);
     64    bool containsItem(WebCore::HistoryItem*);
    6565
    6666    void close() override;
    67     WEBCORE_EXPORT bool closed();
     67    bool closed();
    6868
    69     WEBCORE_EXPORT void removeItem(WebCore::HistoryItem*);
    70     WEBCORE_EXPORT Vector<Ref<WebCore::HistoryItem>>& entries();
     69    void removeItem(WebCore::HistoryItem*);
     70    Vector<Ref<WebCore::HistoryItem>>& entries();
    7171
    7272#if PLATFORM(IOS)
     
    7676
    7777private:
    78     WEBCORE_EXPORT explicit BackForwardList(WebView *);
     78    explicit BackForwardList(WebView *);
    7979
    8080    WebView* m_webView;
Note: See TracChangeset for help on using the changeset viewer.