| Index: Source/web/WebRemoteFrameImpl.cpp
|
| diff --git a/Source/web/WebRemoteFrameImpl.cpp b/Source/web/WebRemoteFrameImpl.cpp
|
| index 64e9f01cbc4fbdd38bcc1d0a2f92e4da2161ba8f..3f97b94f3f473a6e820c3810d10525cf755dfac7 100644
|
| --- a/Source/web/WebRemoteFrameImpl.cpp
|
| +++ b/Source/web/WebRemoteFrameImpl.cpp
|
| @@ -296,6 +296,26 @@ v8::Local<v8::Context> WebRemoteFrameImpl::mainWorldScriptContext() const
|
| return v8::Local<v8::Context>();
|
| }
|
|
|
| +WebURLRequest WebRemoteFrameImpl::RequestFromHistoryItem(const WebHistoryItem&,
|
| + WebURLRequest::CachePolicy) const
|
| +{
|
| + ASSERT_NOT_REACHED();
|
| + return WebURLRequest();
|
| +}
|
| +
|
| +WebURLRequest WebRemoteFrameImpl::RequestForReload(const WebHistoryItem&, WebFrameLoadType,
|
| + const WebURL&) const
|
| +{
|
| + ASSERT_NOT_REACHED();
|
| + return WebURLRequest();
|
| +}
|
| +
|
| +WebHistoryItem WebRemoteFrameImpl::CurrentItem() const
|
| +{
|
| + ASSERT_NOT_REACHED();
|
| + return WebHistoryItem();
|
| +}
|
| +
|
| void WebRemoteFrameImpl::reload(bool ignoreCache)
|
| {
|
| ASSERT_NOT_REACHED();
|
| @@ -306,7 +326,7 @@ void WebRemoteFrameImpl::reloadWithOverrideURL(const WebURL& overrideUrl, bool i
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|
| -void WebRemoteFrameImpl::loadRequest(const WebURLRequest&)
|
| +void WebRemoteFrameImpl::loadRequest(const WebURLRequest&, WebFrameLoadType, const WebHistoryItem&)
|
| {
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|