On Mon, Apr 20, 2009 at 10:53 AM, Wan-Teh Chang <[email protected]> wrote:
>
> You can look at url_request.{h,cc}, which is in the net module.
>
> You can also look at the next layer up, which has two sets of files:
> 1. resource_dispatcher_host.{h,cc}: I think this is exactly what you
> wanted, but it doesn't cover the network traffic generated by the next
> set of files.

This document may help explain where resource_dispatcher_host fits in:
  
http://dev.chromium.org/developers/design-documents/multi-process-resource-loading
It gets all page-level requests for URLs, but no browser-level
requests (such as the phishing databases or the omnibox suggestions).

> 2. url_fetcher.{h,cc}: I believe this covers the network traffic generated
> by Chromium itself, such as talking to the safe browsing server, the
> search suggestion server, etc.

This is right.  URLFetcher and ResourceDispatcherHost are both built
on URLRequest.

--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: [email protected] 
View archives, change email options, or unsubscribe: 
    http://groups.google.com/group/chromium-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to