Home | History | Annotate | Download | only in web

Lines Matching refs:unreachableURL

946 void WebFrameImpl::loadData(const WebData& data, const WebString& mimeType, const WebString& textEncoding, const WebURL& baseURL, const WebURL& unreachableURL, bool replace)
953 // we only do this when there is an unreachableURL since a non-empty
954 // unreachableURL informs FrameLoader::reload to load unreachableURL
957 if (replace && !unreachableURL.isEmpty())
961 FrameLoadRequest frameRequest(0, request, SubstituteData(data, mimeType, textEncoding, unreachableURL));
967 void WebFrameImpl::loadHTMLString(const WebData& data, const WebURL& baseURL, const WebURL& unreachableURL, bool replace)
970 loadData(data, WebString::fromUTF8("text/html"), WebString::fromUTF8("UTF-8"), baseURL, unreachableURL, replace);