HomeSort by relevance Sort by last modified time
    Searched refs:XMLHttpRequest (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/remoting/webapp/
browser_globals.gtestjs 12 var XMLHttpRequest = function() {};
xhr.js 41 * @param {function(XMLHttpRequest):void} onDone The function to call on
50 * @return {XMLHttpRequest} The request object.
62 * @param {function(XMLHttpRequest):void} onDone The function to call on
71 * @return {XMLHttpRequest} The request object.
83 * @param {function(XMLHttpRequest):void} onDone The function to call on
92 * @return {XMLHttpRequest} The request object.
104 * @param {function(XMLHttpRequest):void} onDone The function to call on
113 * @return {XMLHttpRequest} The request object.
126 * @param {function(XMLHttpRequest):void} onDone The function to call on
135 * @return {XMLHttpRequest} The XMLHttpRequest object
    [all...]
wcs_loader.js 119 /** @type {XMLHttpRequest} */
120 var xhr = new XMLHttpRequest();
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequestUpload.h 31 #include "core/xml/XMLHttpRequest.h"
44 class XMLHttpRequest;
49 static PassOwnPtrWillBeRawPtr<XMLHttpRequestUpload> create(XMLHttpRequest* xmlHttpRequest)
51 return adoptPtrWillBeRefCountedGarbageCollected(new XMLHttpRequestUpload(xmlHttpRequest));
59 XMLHttpRequest* xmlHttpRequest() const { return m_xmlHttpRequest; }
72 explicit XMLHttpRequestUpload(XMLHttpRequest*);
79 RawPtrWillBeMember<XMLHttpRequest> m_xmlHttpRequest;
XMLHttpRequest.cpp 24 #include "core/xml/XMLHttpRequest.h"
67 DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, xmlHttpRequestCounter, ("XMLHttpRequest"));
160 PassRefPtrWillBeRawPtr<XMLHttpRequest> XMLHttpRequest::create(ExecutionContext* context, PassRefPtr<SecurityOrigin> securityOrigin)
162 RefPtrWillBeRawPtr<XMLHttpRequest> xmlHttpRequest = adoptRefWillBeRefCountedGarbageCollected(new XMLHttpRequest(context, securityOrigin));
163 xmlHttpRequest->suspendIfNeeded();
165 return xmlHttpRequest.release();
168 XMLHttpRequest::XMLHttpRequest(ExecutionContext* context, PassRefPtr<SecurityOrigin> securityOrigin
    [all...]
XMLHttpRequest.h 56 class XMLHttpRequest FINAL
57 : public RefCountedWillBeRefCountedGarbageCollected<XMLHttpRequest>
63 REFCOUNTED_EVENT_TARGET(XMLHttpRequest);
64 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(XMLHttpRequest);
66 static PassRefPtrWillBeRawPtr<XMLHttpRequest> create(ExecutionContext*, PassRefPtr<SecurityOrigin> = nullptr);
67 virtual ~XMLHttpRequest();
157 XMLHttpRequest(ExecutionContext*, PassRefPtr<SecurityOrigin>);
270 AsyncMethodRunner<XMLHttpRequest> m_dropProtectionRunner;
XMLHttpRequestUpload.cpp 36 XMLHttpRequestUpload::XMLHttpRequestUpload(XMLHttpRequest* xmlHttpRequest)
37 : m_xmlHttpRequest(xmlHttpRequest)
XMLHttpRequest.idl 44 ] interface XMLHttpRequest : XMLHttpRequestEventTarget {
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
cts_report.js 26 req = new XMLHttpRequest();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8XMLHttpRequestCustom.cpp 48 #include "core/xml/XMLHttpRequest.h"
65 RefPtrWillBeRawPtr<XMLHttpRequest> xmlHttpRequest = XMLHttpRequest::create(context, securityOrigin);
68 V8DOMWrapper::associateObjectWithWrapper<V8XMLHttpRequest>(xmlHttpRequest.release(), &wrapperTypeInfo, wrapper, info.GetIsolate(), WrapperConfiguration::Dependent);
74 XMLHttpRequest* xmlHttpRequest = V8XMLHttpRequest::toNative(info.Holder());
75 ExceptionState exceptionState(ExceptionState::GetterContext, "responseText", "XMLHttpRequest", info.Holder(), info.GetIsolate());
76 ScriptString text = xmlHttpRequest->responseText(exceptionState);
88 XMLHttpRequest* xmlHttpRequest = V8XMLHttpRequest::toNative(info.Holder())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
AsyncCallStackTracker.h 49 class XMLHttpRequest;
94 void willLoadXHR(XMLHttpRequest*, const ScriptValue& callFrames);
105 void willHandleXHREvent(XMLHttpRequest*, EventTarget*, Event*);
InspectorTraceEvents.h 28 class XMLHttpRequest;
93 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContext*, XMLHttpRequest*);
98 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContext*, XMLHttpRequest*);
InspectorResourceAgent.h 67 class XMLHttpRequest;
100 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicString& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers, bool includeCrendentials);
101 void didFailXHRLoading(XMLHttpRequest*, ThreadableLoaderClient*);
102 void didFinishXHRLoading(XMLHttpRequest*, ThreadableLoaderClient*, unsigned long identifier, ScriptString sourceString, const AtomicString&, const String&, const String&, unsigned);
AsyncCallStackTracker.cpp 38 #include "core/xml/XMLHttpRequest.h"
49 static const char xhrSendName[] = "XMLHttpRequest.send";
84 static XMLHttpRequest* toXmlHttpRequest(EventTarget* eventTarget)
87 if (interfaceName == EventTargetNames::XMLHttpRequest)
88 return static_cast<XMLHttpRequest*>(eventTarget);
90 return static_cast<XMLHttpRequestUpload*>(eventTarget)->xmlHttpRequest();
223 if (XMLHttpRequest* xhr = toXmlHttpRequest(eventTarget)) {
233 void AsyncCallStackTracker::willLoadXHR(XMLHttpRequest* xhr, const ScriptValue& callFrames)
243 void AsyncCallStackTracker::willHandleXHREvent(XMLHttpRequest* xhr, EventTarget* eventTarget, Event* event)
InspectorConsoleAgent.h 58 class XMLHttpRequest;
97 void didFinishXHRLoading(XMLHttpRequest*, ThreadableLoaderClient*, unsigned long requestIdentifier, ScriptString, const AtomicString& method, const String& url, const String& sendURL, unsigned sendLineNumber);
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
progress_manager.js 6 * Monitor the downloading progress of a XMLHttpRequest |xhr_| and shows the
17 * Sets the XMLHttpRequest |xhr| to monitor, and the wallpaper thumbnail grid
22 * @param {XMLHttpRequest} xhr The XMLHttpRequest.
78 * @param {Event} e A loadstart ProgressEvent from XMLHttpRequest.
89 * @param {Event} e An error/abort ProgressEvent from XMLHttpRequest.
100 * @param {Event} e A load ProgressEvent from XMLHttpRequest.
111 * @param {Event} e A progress ProgressEvent from XMLHttpRequest.
util.js 47 * @param {string} type The response type of XMLHttprequest.
49 * current XMLHttprequest object.
51 * @param {XMLHttpRequest=} opt_xhr The XMLHttpRequest object.
58 xhr = new XMLHttpRequest();
  /external/chromium_org/third_party/WebKit/ManualTests/inspector-wrappers/
inspector-wrappers-test-utils.js 17 var xhr = new win.XMLHttpRequest();
19 "to make a cross-domain XMLHttpRequest. Where " +
28 var str = "<p>This test tries to make a cross-domain XMLHttpRequest to " +
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
utils.js 11 var xhr = new XMLHttpRequest();
  /external/chromium_org/chrome/common/extensions/docs/examples/howto/contentscript_xhr/
contentscript.js 8 * Performs an XMLHttpRequest to Twitter's API to get trending topics.
15 var xhr = new XMLHttpRequest();
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/
popup.js 10 var request = new XMLHttpRequest();
  /external/chromium_org/native_client_sdk/src/resources/
background.js 27 var xhr = new XMLHttpRequest();
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/polyfills/
fetchPolyfill.js 26 var xhr = new XMLHttpRequest();
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
net.js 60 var xhr = new XMLHttpRequest();
102 // We use XMLHttpRequest and CORS to fetch JSONP rather than using script tags.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/
util.js 53 var xhr = new XMLHttpRequest();

Completed in 483 milliseconds

1 2 3 4 5 6 7 8