diff options
author | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-27 22:54:53 +0000 |
---|---|---|
committer | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-27 22:54:53 +0000 |
commit | d7c9f429c2a8d56e394f8b0f037158cb64736cb4 (patch) | |
tree | 0e230984a6f0f5ae4488795d81e321f616687bac /net/http/http_stream_request.cc | |
parent | 79440c5ed48b25cce5edce8c23a3b7722f78ae8d (diff) | |
download | chromium_src-d7c9f429c2a8d56e394f8b0f037158cb64736cb4.zip chromium_src-d7c9f429c2a8d56e394f8b0f037158cb64736cb4.tar.gz chromium_src-d7c9f429c2a8d56e394f8b0f037158cb64736cb4.tar.bz2 |
Rename the following SSLClientSocket methods to match the style guide:
wasNpnNegotiated() -> was_npn_negotiated()
setWasNpnNegotiated() -> set_was_npn_negotiated()
wasSpdyNegotiated() -> was_spdy_negotiated()
setWasSpdyNegotiated() -> set_was_spdy_negotiated()
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3229004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57741 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_stream_request.cc')
-rw-r--r-- | net/http/http_stream_request.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http/http_stream_request.cc b/net/http/http_stream_request.cc index 000e013..1200794 100644 --- a/net/http/http_stream_request.cc +++ b/net/http/http_stream_request.cc @@ -563,9 +563,9 @@ int HttpStreamRequest::DoInitConnectionComplete(int result) { if (ssl_started && (result == OK || IsCertificateError(result))) { SSLClientSocket* ssl_socket = static_cast<SSLClientSocket*>(connection_->socket()); - if (ssl_socket->wasNpnNegotiated()) { + if (ssl_socket->was_npn_negotiated()) { was_npn_negotiated_ = true; - if (ssl_socket->wasSpdyNegotiated()) + if (ssl_socket->was_spdy_negotiated()) using_spdy_ = true; } if (force_spdy_over_ssl_ && force_spdy_always_) |