Chromium Code Reviews| Index: net/docs/life-of-a-url-request.md |
| diff --git a/net/docs/life-of-a-url-request.md b/net/docs/life-of-a-url-request.md |
| index 76622a5df18011c88be71c750877e146d18f8c12..1c7a6620bcf67b0c1bfb4c6fbcebe951e5af4840 100644 |
| --- a/net/docs/life-of-a-url-request.md |
| +++ b/net/docs/life-of-a-url-request.md |
| @@ -103,8 +103,8 @@ work. |
| Summary: |
| -* ResourceDispatcher creates an IPCResourceLoaderBridge. |
| -* The IPCResourceLoaderBridge asks ResourceDispatcher to start the request. |
| +* A user (e.g. the WebURLLoaderImpl for Blink) asks ResourceDispatcher to start |
| +the request. |
| * ResourceDispatcher sends an IPC to the ResourceDispatcherHost in the |
| browser process. |
| @@ -117,8 +117,7 @@ processes are the ones that layout webpages and run HTML. |
| Each child process has at most one ResourceDispatcher, which is responsible for |
| all URL request-related communication with the browser process. When something |
| in another process needs to issue a resource request, it calls into the |
| -ResourceDispatcher, which returns an IPCResourceLoaderBridge to the caller. |
| -The caller uses the bridge to start a request. When started, the |
| +ResourceDispatcher to start a request. When started, the |
|
mmenke
2015/07/17 12:29:34
Should mention that a RequestPeer is passed in to
tyoshino (SeeGerritForStatus)
2015/07/17 13:07:15
Done.
|
| ResourceDispatcher assigns the request a per-renderer ID, and then sends the |
| ID, along with all information needed to issue the request, to the |
| ResourceDispatcherHost in the browser process. |
| @@ -243,9 +242,8 @@ they make their way to the AsyncResourceHandler. The AsyncResourceHandler uses |
| the renderer process ID ("child ID") to figure out which process the request |
| was associated with, and then sends the headers along with the request ID to |
| that process's ResourceDispatcher. The ResourceDispatcher uses the ID to |
| -figure out which IPCResourceLoaderBridge the headers should be sent to, which |
| -sends them on to whatever created the IPCResourceLoaderBridge in the first |
| -place. |
| +figure out which RequestPeer the headers should be sent to, which |
| +sends them on to the RequestPeer. |
| ### Response body is read |