summaryrefslogtreecommitdiffstats
path: root/net/socket/ssl_client_socket.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/socket/ssl_client_socket.h')
-rw-r--r--net/socket/ssl_client_socket.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/socket/ssl_client_socket.h b/net/socket/ssl_client_socket.h
index 9c8e84a..c4a063a 100644
--- a/net/socket/ssl_client_socket.h
+++ b/net/socket/ssl_client_socket.h
@@ -94,19 +94,19 @@ class SSLClientSocket : public ClientSocket {
return false;
}
- virtual bool wasNpnNegotiated() const {
+ virtual bool was_npn_negotiated() const {
return was_npn_negotiated_;
}
- virtual bool setWasNpnNegotiated(bool negotiated) {
+ virtual bool set_was_npn_negotiated(bool negotiated) {
return was_npn_negotiated_ = negotiated;
}
- virtual bool wasSpdyNegotiated() const {
+ virtual bool was_spdy_negotiated() const {
return was_spdy_negotiated_;
}
- virtual bool setWasSpdyNegotiated(bool negotiated) {
+ virtual bool set_was_spdy_negotiated(bool negotiated) {
return was_spdy_negotiated_ = negotiated;
}