summaryrefslogtreecommitdiffstats
path: root/net/proxy/proxy_info.h
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-23 17:24:40 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-23 17:24:40 +0000
commitaacc8f19737f981d40ee989fe7f25ac16d38c640 (patch)
tree95d2bdb35a1b0ecc384326b0da248f5f72b79d33 /net/proxy/proxy_info.h
parent8d40e31d9ec3466d55580189285b60b2a619924a (diff)
downloadchromium_src-aacc8f19737f981d40ee989fe7f25ac16d38c640.zip
chromium_src-aacc8f19737f981d40ee989fe7f25ac16d38c640.tar.gz
chromium_src-aacc8f19737f981d40ee989fe7f25ac16d38c640.tar.bz2
Address a couple of nits in comment wording.
BUG=NONE Review URL: http://codereview.chromium.org/2830022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50611 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy/proxy_info.h')
-rw-r--r--net/proxy/proxy_info.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/net/proxy/proxy_info.h b/net/proxy/proxy_info.h
index 5555108..ec5d05a 100644
--- a/net/proxy/proxy_info.h
+++ b/net/proxy/proxy_info.h
@@ -22,22 +22,22 @@ class ProxyInfo {
ProxyInfo();
// Default copy-constructor and assignment operator are OK!
- // Use the same proxy server as the given |proxy_info|.
+ // Uses the same proxy server as the given |proxy_info|.
void Use(const ProxyInfo& proxy_info);
- // Use a direct connection.
+ // Uses a direct connection.
void UseDirect();
- // Use a specific proxy server, of the form:
+ // Uses a specific proxy server, of the form:
// proxy-uri = [<scheme> "://"] <hostname> [":" <port>]
// This may optionally be a semi-colon delimited list of <proxy-uri>.
// It is OK to have LWS between entries.
void UseNamedProxy(const std::string& proxy_uri_list);
- // Set the proxy list to a single entry, |proxy_server|.
+ // Sets the proxy list to a single entry, |proxy_server|.
void UseProxyServer(const ProxyServer& proxy_server);
- // Parse from the given PAC result.
+ // Parses from the given PAC result.
void UsePacString(const std::string& pac_string) {
proxy_list_.SetFromPacString(pac_string);
}
@@ -88,7 +88,7 @@ class ProxyInfo {
proxy_list_.DeprioritizeBadProxies(proxy_retry_info);
}
- // Delete any entry which doesn't have one of the specified proxy schemes.
+ // Deletes any entry which doesn't have one of the specified proxy schemes.
void RemoveProxiesWithoutScheme(int scheme_bit_field) {
proxy_list_.RemoveProxiesWithoutScheme(scheme_bit_field);
}