summaryrefslogtreecommitdiffstats
path: root/net/url_request
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-16 21:35:33 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-16 21:35:33 +0000
commitaa2f7f32f96a48b85b0e72761b6d9745c74e8491 (patch)
tree7894abbb8fbe38a457a94c39ededb5bad0a3e7f4 /net/url_request
parent4bf2c449817e83e7442b8333699ce26d0550b6d1 (diff)
downloadchromium_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')
-rw-r--r--net/url_request/url_request.h8
-rw-r--r--net/url_request/url_request_status.h2
2 files changed, 5 insertions, 5 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.
diff --git a/net/url_request/url_request_status.h b/net/url_request/url_request_status.h
index 9861c51..ca376fb 100644
--- a/net/url_request/url_request_status.h
+++ b/net/url_request/url_request_status.h
@@ -9,7 +9,7 @@
#define NET_URL_REQUEST_URL_REQUEST_STATUS_H_
#pragma once
-// Respresents the result of a URL request. It encodes errors and various
+// Represents the result of a URL request. It encodes errors and various
// types of success.
class URLRequestStatus {
public: