HomeSort by relevance Sort by last modified time
    Searched refs:requestURL (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
NetworkUISourceCodeProvider.js 77 var requestURL = script.sourceURL.replace(/#.*/, "");
78 if (WebInspector.resourceForURL(requestURL) || WebInspector.networkLog.requestForURL(requestURL))
NetworkManager.js 402 * @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/
FormSubmission.cpp 220 KURL FormSubmission::requestURL() const
225 KURL requestURL(m_action);
226 requestURL.setQuery(m_formData->flattenToString());
227 return requestURL;
249 frameRequest.resourceRequest().setURL(requestURL());
DocumentThreadableLoader.cpp 403 const KURL& requestURL = request.url();
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()))) {
FormSubmission.h 98 KURL requestURL() const;
DocumentLoader.h 102 // FIXME: This is the same as requestURL(). We should remove one of them.
107 const KURL& requestURL() const;
DocumentLoader.cpp 612 m_writer = createWriterFor(m_frame, 0, requestURL(), mimeType, encoding, false, false);
832 const KURL& DocumentLoader::requestURL() const
    [all...]
FrameLoader.cpp 271 if (m_submittedFormURL == submission->requestURL())
273 m_submittedFormURL = submission->requestURL();
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
utils.js 9 buildbot.requestURL =
bg.js 38 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) {
popup.js 263 buildbot.requestURL(lkgrURL, "text", updateLKGR);
286 buildbot.requestURL(lkgrURL, "text", updateLKGR);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorAgent.cpp 144 bool InspectorAgent::isMainResourceLoader(DocumentLoader* loader, const KURL& requestUrl)
146 return loader->frame() == m_inspectedPage->mainFrame() && requestUrl == loader->requestURL();
InspectorResourceAgent.h 120 void didCreateWebSocket(Document*, unsigned long identifier, const KURL& requestURL, const String&);
InspectorResourceAgent.cpp 529 void InspectorResourceAgent::didCreateWebSocket(Document*, unsigned long identifier, const KURL& requestURL, const String&)
531 m_frontend->webSocketCreated(IdentifiersFactory::requestId(identifier), urlWithoutFragment(requestURL).string());
InspectorInstrumentation.idl 385 void didCreateWebSocket([Keep] Document*, unsigned long identifier, const KURL& requestURL, const String& protocol);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestProxy.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
ResourceFetcher.cpp 208 KURL requestURL = request.resourceRequest().url();
209 if (requestURL.isValid() && canRequest(Resource::Image, requestURL, request.options(), request.forPreload()))
210 PingLoader::loadImage(f, requestURL);
    [all...]

Completed in 340 milliseconds