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?
--
--
Chromium Discussion mailing list: chromium...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-discuss
---
You received this message because you are subscribed to the Google Groups "Chromium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-discuss+unsubscribe@chromium.org.
☆PhistucK
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-discu...@chromium.org.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-discuss+unsubscribe@chromium.org.
The other breakpoints you set - were they in renderer code (anything under renderer/ or under third_party/WebKit)?If they were not, then you might not be attaching to the right process, renderers are child processes of the browser process.If they were, then the JavaScript-to-C++ bindings may call things a bit differently. Try setting a breakpoint on the open method, perhaps.
<snip>
--