diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-16 21:35:33 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-16 21:35:33 +0000 |
commit | aa2f7f32f96a48b85b0e72761b6d9745c74e8491 (patch) | |
tree | 7894abbb8fbe38a457a94c39ededb5bad0a3e7f4 /net/url_request/url_request.h | |
parent | 4bf2c449817e83e7442b8333699ce26d0550b6d1 (diff) | |
download | chromium_src-aa2f7f32f96a48b85b0e72761b6d9745c74e8491.zip chromium_src-aa2f7f32f96a48b85b0e72761b6d9745c74e8491.tar.gz chromium_src-aa2f7f32f96a48b85b0e72761b6d9745c74e8491.tar.bz2 |
FBTF: Header cleanup in renderer_host.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3164011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56237 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request/url_request.h')
-rw-r--r-- | net/url_request/url_request.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/url_request/url_request.h b/net/url_request/url_request.h index 06b1048..3f06954 100644 --- a/net/url_request/url_request.h +++ b/net/url_request/url_request.h @@ -379,7 +379,7 @@ class URLRequest : public NonThreadSafe { bool was_cached() const { return response_info_.was_cached; } // True if response could use alternate protocol. However, browser will - // ingore the alternate protocol if spdy is not enabled. + // ignore the alternate protocol if spdy is not enabled. bool was_fetched_via_spdy() const { return response_info_.was_fetched_via_spdy; } @@ -390,7 +390,7 @@ class URLRequest : public NonThreadSafe { return response_info_.was_npn_negotiated; } - // Returns true if the URLRequest was delivered when the alertnate protocol + // Returns true if the URLRequest was delivered when the alternate protocol // is available. bool was_alternate_protocol_available() const { return response_info_.was_alternate_protocol_available; @@ -572,7 +572,7 @@ class URLRequest : public NonThreadSafe { void ResponseStarted(); // Allow an interceptor's URLRequestJob to restart this request. - // Should only be called if the original job has not started a resposne. + // Should only be called if the original job has not started a response. void Restart(); private: @@ -596,7 +596,7 @@ class URLRequest : public NonThreadSafe { // Contextual information used for this request (can be NULL). This contains // most of the dependencies which are shared between requests (disk cache, - // cookie store, socket poool, etc.) + // cookie store, socket pool, etc.) scoped_refptr<URLRequestContext> context_; // Tracks the time spent in various load states throughout this request. |