Home
last modified time | relevance | path

Searched refs:webError (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
DWebGeolocationController.cpp47 void WebGeolocationController::errorOccurred(const WebGeolocationError& webError) in errorOccurred() argument
49 m_private->errorOccurred(PassRefPtr<GeolocationError>(webError).get()); in errorOccurred()
DWebGeolocationClientMock.cpp76 WebGeolocationError webError(code, message); in setError() local
77 m_clientMock->setError(webError); in setError()
DAssociatedURLLoader.cpp158 WebURLError webError(error); in didFail() local
159 m_client->didFail(m_loader, webError); in didFail()
DWebFrameImpl.cpp2140 WebURLError webError = error; in didFail() local
2142 client()->didFailProvisionalLoad(this, webError); in didFail()
2144 client()->didFailLoad(this, webError); in didFail()
/external/webkit/Source/WebKit/win/
DWebURLAuthenticationChallenge.cpp138 COMPtr<WebError> webError; in initWithProtectionSpace() local
139 hr = error->QueryInterface(CLSID_WebError, (void**)&webError); in initWithProtectionSpace()
151 … previousFailureCount, webResponse->resourceResponse(), webError->resourceError()); in initWithProtectionSpace()
DWebDownloadCFNet.cpp313 COMPtr<WebError> webError(AdoptCOM, WebError::createInstance(error)); in cancelAuthenticationChallenge() local
314 m_delegate->didFailWithError(this, webError.get()); in cancelAuthenticationChallenge()
510 COMPtr<WebError> webError(AdoptCOM, WebError::createInstance(ResourceError(error))); in didFail() local
511 if (FAILED(m_delegate->didFailWithError(this, webError.get()))) in didFail()
DWebFrame.cpp1825 COMPtr<IWebError> webError(AdoptCOM, WebError::createInstance(error)); in dispatchUnableToImplementPolicy() local
1826 policyDelegate->unableToImplementPolicyWithError(d->webView, webError.get(), this); in dispatchUnableToImplementPolicy()
1858 COMPtr<IWebError> webError; in dispatchDidFailProvisionalLoad() local
1859 webError.adoptRef(WebError::createInstance(error)); in dispatchDidFailProvisionalLoad()
1860 frameLoadDelegate->didFailProvisionalLoadWithError(d->webView, webError.get(), this); in dispatchDidFailProvisionalLoad()
1868 COMPtr<IWebError> webError; in dispatchDidFailLoad() local
1869 webError.adoptRef(WebError::createInstance(error)); in dispatchDidFailLoad()
1870 frameLoadDelegate->didFailLoadWithError(d->webView, webError.get(), this); in dispatchDidFailLoad()
/external/webkit/Source/WebKit/win/WebCoreSupport/
DEmbeddedWidget.cpp236 COMPtr<IWebError> webError(AdoptCOM, WebError::createInstance(error)); in didFail() local
237 m_view->didFail(webError.get()); in didFail()
DWebFrameLoaderClient.cpp242 COMPtr<WebError> webError(AdoptCOM, WebError::createInstance(error)); in dispatchDidFailLoading() local
243 …resourceLoadDelegate->didFailLoadingWithError(webView, identifier, webError.get(), getWebDataSourc… in dispatchDidFailLoading()
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DFrameLoaderClientGtk.cpp1197 GError* webError = g_error_new_literal(g_quark_from_string(error.domain().utf8().data()), in dispatchDidFailLoad() local
1201 …it_by_name(webView, "load-error", m_frame, error.failingURL().utf8().data(), webError, &isHandled); in dispatchDidFailLoad()
1204 g_error_free(webError); in dispatchDidFailLoad()
1209 g_error_free(webError); in dispatchDidFailLoad()
1222 content = makeString("<html><body>", webError->message, "</body></html>"); in dispatchDidFailLoad()
1226 content = makeString("<html><body>", webError->message, "</body></html>"); in dispatchDidFailLoad()
1228 … content = String::format(fileContent, error.failingURL().utf8().data(), webError->message); in dispatchDidFailLoad()
1238 g_error_free(webError); in dispatchDidFailLoad()