Changeset 18636 in webkit


Ignore:
Timestamp:
Jan 5, 2007 5:13:35 PM (17 years ago)
Author:
andersca
Message:

Reviewed by Darin.

Fix build.


  • WebCoreSupport/WebFrameLoaderClient.h:
  • WebCoreSupport/WebFrameLoaderClient.mm: (WebFrameLoaderClient::dispatchCreatePage):
Location:
trunk/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/ChangeLog

    r18621 r18636  
     12007-01-05  Anders Carlsson  <acarlsson@apple.com>
     2
     3        Reviewed by Darin.
     4
     5        Fix build.
     6       
     7        * WebCoreSupport/WebFrameLoaderClient.h:
     8        * WebCoreSupport/WebFrameLoaderClient.mm:
     9        (WebFrameLoaderClient::dispatchCreatePage):
     10
    1112007-01-05  Anders Carlsson  <acarlsson@apple.com>
    212
  • trunk/WebKit/WebCoreSupport/WebFrameLoaderClient.h

    r18605 r18636  
    104104    virtual void dispatchDidFirstLayout();
    105105
    106     virtual WebCore::Frame* dispatchCreatePage(NSURLRequest *);
     106    virtual WebCore::Frame* dispatchCreatePage();
    107107    virtual void dispatchShow();
    108108
  • trunk/WebKit/WebCoreSupport/WebFrameLoaderClient.mm

    r18605 r18636  
    462462}
    463463
    464 Frame* WebFrameLoaderClient::dispatchCreatePage(NSURLRequest *request)
     464Frame* WebFrameLoaderClient::dispatchCreatePage()
    465465{
    466466    WebView *currentWebView = getWebView(m_webFrame.get());
    467467    id wd = [currentWebView UIDelegate];
    468468    if ([wd respondsToSelector:@selector(webView:createWebViewWithRequest:)])
    469         return core([[wd webView:currentWebView createWebViewWithRequest:request] mainFrame]);
     469        return core([[wd webView:currentWebView createWebViewWithRequest:nil] mainFrame]);
    470470    return 0;
    471471}
Note: See TracChangeset for help on using the changeset viewer.