Changeset 150205 in webkit


Ignore:
Timestamp:
May 16, 2013, 1:50:06 PM (12 years ago)
Author:
mitz@apple.com
Message:

-webView:updateHistoryTitle:forURL: does not pass a frame to the delegate
https://bugs.webkit.org/show_bug.cgi?id=116243

Reviewed by Anders Carlsson.

Added a WebFrame parameter to the delegate method.

  • WebCoreSupport/WebFrameLoaderClient.mm:

(WebFrameLoaderClient::setTitle): Pass the frame to the delegate. Maintain
compatibility with clients that implement the old delegate method that
doesn’t take a frame.

  • WebView/WebDelegateImplementationCaching.h:

(WebHistoryDelegateImplementationCache): Added a field to cache the
implementation of the old delegate method.

  • WebView/WebHistoryDelegate.h: Changed the signature of the delegate method.
  • WebView/WebView.mm:

(-[WebView _cacheHistoryDelegateImplementations]): Cache the implementation
of the new delegate method, but also check for the old one.

Location:
trunk/Source/WebKit/mac
Files:
5 edited

Legend:

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

    r150194 r150205  
     12013-05-16  Dan Bernstein  <mitz@apple.com>
     2
     3        -webView:updateHistoryTitle:forURL: does not pass a frame to the delegate
     4        https://bugs.webkit.org/show_bug.cgi?id=116243
     5
     6        Reviewed by Anders Carlsson.
     7
     8        Added a WebFrame parameter to the delegate method.
     9
     10        * WebCoreSupport/WebFrameLoaderClient.mm:
     11        (WebFrameLoaderClient::setTitle): Pass the frame to the delegate. Maintain
     12        compatibility with clients that implement the old delegate method that
     13        doesn’t take a frame.
     14        * WebView/WebDelegateImplementationCaching.h:
     15        (WebHistoryDelegateImplementationCache): Added a field to cache the
     16        implementation of the old delegate method.
     17        * WebView/WebHistoryDelegate.h: Changed the signature of the delegate method.
     18        * WebView/WebView.mm:
     19        (-[WebView _cacheHistoryDelegateImplementations]): Cache the implementation
     20        of the new delegate method, but also check for the old one.
     21
    1222013-05-16  Simon Fraser  <simon.fraser@apple.com>
    223
  • trunk/Source/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.mm

    r150056 r150205  
    11741174    if ([view historyDelegate]) {
    11751175        WebHistoryDelegateImplementationCache* implementations = WebViewGetHistoryDelegateImplementations(view);
    1176         if (!implementations->setTitleFunc)
    1177             return;
    1178            
    11791176        // FIXME: use direction of title.
    1180         CallHistoryDelegate(implementations->setTitleFunc, view, @selector(webView:updateHistoryTitle:forURL:), (NSString *)title.string(), (NSString *)url);
     1177        if (implementations->setTitleFunc)
     1178            CallHistoryDelegate(implementations->setTitleFunc, view, @selector(webView:updateHistoryTitle:forURL:inFrame:), (NSString *)title.string(), (NSString *)url, m_webFrame.get());
     1179        else if (implementations->deprecatedSetTitleFunc)
     1180            CallHistoryDelegate(implementations->deprecatedSetTitleFunc, view, @selector(webView:updateHistoryTitle:forURL:), (NSString *)title.string(), (NSString *)url);
     1181
    11811182        return;
    11821183    }
  • trunk/Source/WebKit/mac/WebView/WebDelegateImplementationCaching.h

    r148368 r150205  
    102102    IMP clientRedirectFunc;
    103103    IMP serverRedirectFunc;
     104    IMP deprecatedSetTitleFunc;
    104105    IMP setTitleFunc;
    105106    IMP populateVisitedLinksFunc;
  • trunk/Source/WebKit/mac/WebView/WebHistoryDelegate.h

    r95901 r150205  
    3838- (void)webView:(WebView *)webView didPerformServerRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame;
    3939
    40 - (void)webView:(WebView *)webView updateHistoryTitle:(NSString *)title forURL:(NSString *)url;
     40- (void)webView:(WebView *)webView updateHistoryTitle:(NSString *)title forURL:(NSString *)url inFrame:(WebFrame *)webFrame;
    4141
    4242- (void)populateVisitedLinksForWebView:(WebView *)webView;
  • trunk/Source/WebKit/mac/WebView/WebView.mm

    r150140 r150205  
    17211721    cache->clientRedirectFunc = getMethod(delegate, @selector(webView:didPerformClientRedirectFromURL:toURL:inFrame:));
    17221722    cache->serverRedirectFunc = getMethod(delegate, @selector(webView:didPerformServerRedirectFromURL:toURL:inFrame:));
    1723     cache->setTitleFunc = getMethod(delegate, @selector(webView:updateHistoryTitle:forURL:));
     1723    cache->deprecatedSetTitleFunc = getMethod(delegate, @selector(webView:updateHistoryTitle:forURL:));
     1724    cache->setTitleFunc = getMethod(delegate, @selector(webView:updateHistoryTitle:forURL:inFrame:));
    17241725    cache->populateVisitedLinksFunc = getMethod(delegate, @selector(populateVisitedLinksForWebView:));
    17251726}
Note: See TracChangeset for help on using the changeset viewer.