Changeset 170731 in webkit


Ignore:
Timestamp:
Jul 2, 2014 3:52:21 PM (10 years ago)
Author:
Csaba Osztrogonác
Message:

URTBF after r170719 for !CF platforms.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::sessionStateData): Deleted.
(WebKit::WebPageProxy::restoreFromSessionStateData): Deleted.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r170730 r170731  
     12014-07-02  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        URTBF after r170719 for !CF platforms.
     4
     5        * UIProcess/WebPageProxy.cpp:
     6        (WebKit::WebPageProxy::sessionStateData): Deleted.
     7        (WebKit::WebPageProxy::restoreFromSessionStateData): Deleted.
     8
    192014-07-02  Mark Rowe  <mrowe@apple.com>
    210
  • trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp

    r170725 r170731  
    18331833}
    18341834
    1835 #if !USE(CF)
    1836 PassRefPtr<API::Data> WebPageProxy::sessionStateData(std::function<bool (WebBackForwardListItem&)>) const
    1837 {
    1838     // FIXME: Return session state data for saving Page state.
    1839     return 0;
    1840 }
    1841 
    1842 uint64_t WebPageProxy::restoreFromSessionStateData(API::Data*)
    1843 {
    1844     // FIXME: Restore the Page from the passed in session state data.
    1845     return 0;
    1846 }
    1847 #endif
    1848 
    18491835SessionState WebPageProxy::sessionState(const std::function<bool (WebBackForwardListItem&)>& filter) const
    18501836{
Note: See TracChangeset for help on using the changeset viewer.