Home
last modified time | relevance | path

Searched refs:newUrl (Results 1 – 5 of 5) sorted by relevance

/external/chromium/chrome/browser/resources/bookmark_manager/js/bmm/
Dbookmark_list.js521 var newUrl = urlInput.value;
522 if (!newUrl) {
531 urlInput.value = 'http://' + newUrl;
534 urlInput.value = newUrl;
551 newUrl = 'http://' + newUrl;
553 urlEl.textContent = this.bookmarkNode.url = newUrl;
567 } else if (newLabel != title || newUrl != url) {
/external/webkit/Source/WebCore/platform/network/qt/
DQNetworkReplyHandler.cpp509 QUrl newUrl = m_replyWrapper->reply()->url().resolved(redirection); in redirect() local
518 ResourceError error(newUrl.host(), 400 /*bad request*/, in redirect()
519 newUrl.toString(), in redirect()
535 newRequest.setURL(newUrl); in redirect()
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
DMediaPlayerPrivateGStreamer.cpp1258 KURL newUrl; in loadNextLocation() local
1261 newUrl = KURL(KURL(), newLocation); in loadNextLocation()
1263 newUrl = KURL(KURL(), currentUrl.baseAsString() + newLocation); in loadNextLocation()
1266 if (securityOrigin->canRequest(newUrl)) { in loadNextLocation()
1267 LOG_VERBOSE(Media, "New media url: %s", newUrl.string().utf8().data()); in loadNextLocation()
1283 g_object_set(m_playBin, "uri", newUrl.string().utf8().data(), NULL); in loadNextLocation()
/external/webkit/Source/WebKit/android/WebCoreSupport/
DWebRequest.cpp389 void WebRequest::OnReceivedRedirect(net::URLRequest* newRequest, const GURL& newUrl, bool* deferRed… in OnReceivedRedirect() argument
395 webResponse->setUrl(newUrl.spec()); in OnReceivedRedirect()
/external/webkit/Source/WebKit/android/jni/
DWebCoreFrameBridge.cpp448 WebCore::KURL newUrl = url; in convertIDNToUnicode() local
449 newUrl.setHost(convertedHost); in convertIDNToUnicode()
450 converted = newUrl.string(); in convertIDNToUnicode()