Reviewed by darin.
Updated to latest hosting interface
* WebFramePrivate.cpp:
(WebKit::WebFramePrivate::openURL):
(WebKit::WebFramePrivate::setTitle):
(WebKit::WebFramePrivate::setStatusText):
* WebFramePrivate.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@14690
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-06-02 Steve Falkenburg <sfalken@apple.com>
+
+ Reviewed by darin.
+
+ Updated to latest hosting interface
+
+ * WebFramePrivate.cpp:
+ (WebKit::WebFramePrivate::openURL):
+ (WebKit::WebFramePrivate::setTitle):
+ (WebKit::WebFramePrivate::setStatusText):
+ * WebFramePrivate.h:
+
2006-05-26 Steve Falkenburg <sfalken@apple.com>
Build fixes/tweaks
d->frame->end();
}
-void WebFramePrivate::openURL(const DeprecatedString& str)
+void WebFramePrivate::openURL(const DeprecatedString& str, bool /*lockHistory*/)
{
loadURL(str.ascii());
}
}
}
+void WebFramePrivate::setTitle(const String& /*title*/)
+{
+}
+
+void WebFramePrivate::setStatusText(const String& /*statusText*/)
+{
+}
+
void WebFramePrivate::loadURL(const char* URL)
{
d->frame->didOpenURL(URL);
virtual WebFramePrivate* toPrivate();
- virtual void openURL(const DeprecatedString&);
+ virtual void openURL(const DeprecatedString&, bool lockHistory);
virtual void submitForm(const WebCore::String& method, const KURL&, const WebCore::FormData*);
+ virtual void setTitle(const WebCore::String& title);
+ virtual void setStatusText(const WebCore::String& statusText);
virtual void receivedData(WebCore::TransferJob*, const char*, int);
virtual void receivedAllData(WebCore::TransferJob*, WebCore::PlatformData);