Searched refs:requestURL (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
H A Dutils.js9 buildbot.requestURL =
H A Dbg.js38 buildbot.requestURL(statusHistoryURL, "text", function(text) {
120 buildbot.requestURL(statusURL,
143 buildbot.requestURL(tryJobURL, "json", function(tryJobResult) {
173 buildbot.requestURL(patchURL, "json", function(patch) {
209 buildbot.requestURL(issueURL, "json", function(issue) {
241 buildbot.requestURL(url, "json", updateTryStatus);
251 buildbot.requestURL(usernameScrapingURL, "text", function(text) {
H A Dpopup.js263 buildbot.requestURL(lkgrURL, "text", updateLKGR);
286 buildbot.requestURL(lkgrURL, "text", updateLKGR);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DNetworkUISourceCodeProvider.js77 var requestURL = script.sourceURL.replace(/#.*/, "");
78 if (WebInspector.resourceForURL(requestURL) || WebInspector.networkLog.requestForURL(requestURL))
H A DNetworkManager.js402 * @param {string} requestURL
404 webSocketCreated: function(requestId, requestURL)
406 var networkRequest = new WebInspector.NetworkRequest(requestId, requestURL, "", "", "");
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DFormSubmission.cpp220 KURL FormSubmission::requestURL() const function in class:WebCore::FormSubmission
225 KURL requestURL(m_action);
226 requestURL.setQuery(m_formData->flattenToString());
227 return requestURL;
249 frameRequest.resourceRequest().setURL(requestURL());
H A DDocumentThreadableLoader.cpp403 const KURL& requestURL = request.url(); local
405 ASSERT(m_sameOriginRequest || requestURL.user().isEmpty());
406 ASSERT(m_sameOriginRequest || requestURL.pass().isEmpty());
442 if (!top->loader()->mixedContentChecker()->canDisplayInsecureContent(top->document()->securityOrigin(), requestURL)) {
453 if (!error.isNull() && !requestURL.isLocalFile() && response.httpStatusCode() <= 0) {
460 // requested. Also comparing the request and response URLs as strings will fail if the requestURL still has its credentials.
461 if (requestURL != response.url() && (!isAllowedByPolicy(response.url()) || !isAllowedRedirect(response.url()))) {
H A DFormSubmission.h98 KURL requestURL() const;
H A DDocumentLoader.h102 // FIXME: This is the same as requestURL(). We should remove one of them.
107 const KURL& requestURL() const;
H A DDocumentLoader.cpp612 m_writer = createWriterFor(m_frame, 0, requestURL(), mimeType, encoding, false, false);
832 const KURL& DocumentLoader::requestURL() const function in class:WebCore::DocumentLoader
H A DFrameLoader.cpp271 if (m_submittedFormURL == submission->requestURL())
273 m_submittedFormURL = submission->requestURL();
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorAgent.cpp146 return loader->frame() == m_inspectedPage->mainFrame() && requestUrl == loader->requestURL();
H A DInspectorResourceAgent.h120 void didCreateWebSocket(Document*, unsigned long identifier, const KURL& requestURL, const String&);
H A DInspectorResourceAgent.cpp529 void InspectorResourceAgent::didCreateWebSocket(Document*, unsigned long identifier, const KURL& requestURL, const String&) argument
531 m_frontend->webSocketCreated(IdentifiersFactory::requestId(identifier), urlWithoutFragment(requestURL).string());
H A DInspectorInstrumentation.idl385 void didCreateWebSocket([Keep] Document*, unsigned long identifier, const KURL& requestURL, const String& protocol);
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DWebTestProxy.cpp1292 string requestURL = url.possibly_invalid_spec(); local
1298 m_resourceIdentifierMap[identifier] = descriptionSuitableForTestResult(requestURL);
1307 m_delegate->printMessage(descriptionSuitableForTestResult(requestURL).c_str());
1318 m_delegate->printMessage(descriptionSuitableForTestResult(requestURL).c_str());
1335 m_delegate->printMessage(string("Blocked access to external URL ") + requestURL + "\n");
/external/chromium_org/third_party/WebKit/Source/core/loader/cache/
H A DResourceFetcher.cpp208 KURL requestURL = request.resourceRequest().url(); local
209 if (requestURL.isValid() && canRequest(Resource::Image, requestURL, request.options(), request.forPreload()))
210 PingLoader::loadImage(f, requestURL);

Completed in 291 milliseconds