Reputation: 14375
I have the Chromium project set up on my PC using Visual Studio 2017. Everything compiles and runs fine. I am looking for the source code location that handles XHR requests made by Javascript code running in a page loaded into the browser. Does anyone know what project or source file contains that code?
Upvotes: 0
Views: 423
Reputation: 1437
As of May 2020, the correct link is:
I was interested in this myself to see what happens to the connection when the XHR request times out.
Upvotes: 1
Reputation: 88046
https://cs.chromium.org/chromium/src/third_party/WebKit/Source/core/xmlhttprequest/ shows where the XHR sources are in the Chromium/Blink tree.
So in your clone of the repo, that’s in src/third_party/WebKit/Source/core/xmlhttprequest
Upvotes: 1