Home | History | Annotate | Download | only in src

Lines Matching refs:url

294     // with no URL.  We don't like that, so we'll rename it to about:blank.
295 if (request.url().isEmpty())
419 // dispatchDidStartProvisionalLoad() -> adds URL to the redirect list
424 // dispatchDidStartProvisionalLoad() -> adds source URL
425 // dispatchDidReceiveServerRedirectForProvisionalLoad() -> adds dest URL
441 // (the SOURCE URL may have changed).
444 // dispatchDidStartProvisionalLoad() -> adds only URL to redirect list
461 // dispatchDidStartProvisionalLoad() -> adds source URL 1
462 // dispatchDidReceiveServerRedirectForProvisionalLoad() -> adds dest URL 2
466 // dispatchDidStartProvisionalLoad() -> appends URL 2 and URL 3
467 // dispatchDidReceiveServerRedirectForProvisionalLoad() -> appends destination URL 4
504 // The URL of the destination is on the provisional data source. We also need
508 ds->appendRedirect(ds->request().url());
529 const KURL& url,
535 m_expectedClientRedirectSrc = m_webFrame->url();
536 m_expectedClientRedirectDest = url;
579 KURL url = ds->request().url();
596 (url == m_expectedClientRedirectDest && chainEnd == m_expectedClientRedirectSrc)
609 // Regardless of how we got here, we are navigating to a URL so we need to
611 ds->appendRedirect(url);
656 // recent provisional load URL.
663 KURL url = ds->request().url();
675 // "javascript:history.go(-1)" thus we need to exclude url starts with
678 || m_expectedClientRedirectDest == url);
682 ds->appendRedirect(url);
900 if (m_webFrame->client() && !request.url().isNull()) {
907 KURL url = ds->request().url();
908 if (url.protocolIs(backForwardNavigationScheme)) {
909 handleBackForwardNavigation(url);
1148 request.url().string(), String());
1171 // This method is called when we fail to load the URL for an <object> tag
1277 void FrameLoaderClientImpl::setTitle(const String& title, const KURL& url)
1282 String FrameLoaderClientImpl::userAgent(const KURL& url)
1284 return webKitClient()->userAgent(url);
1323 const KURL& url,
1331 FrameLoadRequest frameRequest(ResourceRequest(url, referrer), name);
1338 const KURL& url,
1354 if (objectContentType(url, mimeType) != ObjectContentNetscapePlugin)
1362 params.url = url;
1406 const KURL& url,
1415 String filename = url.lastPathComponent();
1464 void FrameLoaderClientImpl::handleBackForwardNavigation(const KURL& url)
1466 ASSERT(url.protocolIs(backForwardNavigationScheme));
1469 int offset = url.lastPathComponent().toIntStrict(&ok);