summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authortyoshino <tyoshino@chromium.org>2015-07-17 06:08:59 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-17 13:09:42 +0000
commit676463ac7d2ac8ec7199f40292a39eefbed99a15 (patch)
treea7a163bd0d315c7b8ccc247c89fce0338a7800bf /net
parent5d1f271f25334da3e5a38218f12d48a70d736e53 (diff)
downloadchromium_src-676463ac7d2ac8ec7199f40292a39eefbed99a15.zip
chromium_src-676463ac7d2ac8ec7199f40292a39eefbed99a15.tar.gz
chromium_src-676463ac7d2ac8ec7199f40292a39eefbed99a15.tar.bz2
life-of-a-url-request.md typo fix: HttpResponseParser -> HttpStreamParser
BUG=none Review URL: https://codereview.chromium.org/1240983002 Cr-Commit-Position: refs/heads/master@{#339245}
Diffstat (limited to 'net')
-rw-r--r--net/docs/life-of-a-url-request.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/docs/life-of-a-url-request.md b/net/docs/life-of-a-url-request.md
index cacd2da..69e9e00 100644
--- a/net/docs/life-of-a-url-request.md
+++ b/net/docs/life-of-a-url-request.md
@@ -265,7 +265,7 @@ tells its ResourceHandler chain to allocate memory to receive the response
body. The AsyncResourceHandler creates a 512KB ring buffer of shared memory,
and then passes the first 32KB of it to the ResourceLoader for the first read.
The ResourceLoader then passes a 32KB body read request down through the
-URLRequest all the way down to the HttpResponseParser. Once some data is read,
+URLRequest all the way down to the HttpStreamParser. Once some data is read,
possibly less than 32KB, the number of bytes read makes its way back to the
AsyncResourceHandler, which passes the shared memory buffer and the offset and
amount of data read to the renderer process.