summaryrefslogtreecommitdiff
path: root/chromium/net/http/http_proxy_client_socket.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/http/http_proxy_client_socket.h')
-rw-r--r--chromium/net/http/http_proxy_client_socket.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/chromium/net/http/http_proxy_client_socket.h b/chromium/net/http/http_proxy_client_socket.h
index 1c433eadd14..e383dd796b7 100644
--- a/chromium/net/http/http_proxy_client_socket.h
+++ b/chromium/net/http/http_proxy_client_socket.h
@@ -20,7 +20,7 @@
#include "net/http/http_request_info.h"
#include "net/http/http_response_info.h"
#include "net/http/proxy_client_socket.h"
-#include "net/log/net_log.h"
+#include "net/log/net_log_with_source.h"
#include "net/socket/ssl_client_socket.h"
namespace net {
@@ -45,7 +45,7 @@ class NET_EXPORT_PRIVATE HttpProxyClientSocket : public ProxyClientSocket {
HttpAuthController* http_auth_controller,
bool tunnel,
bool using_spdy,
- NextProto protocol_negotiated,
+ NextProto negotiated_protocol,
ProxyDelegate* proxy_delegate,
bool is_https_proxy);
@@ -58,14 +58,14 @@ class NET_EXPORT_PRIVATE HttpProxyClientSocket : public ProxyClientSocket {
int RestartWithAuth(const CompletionCallback& callback) override;
const scoped_refptr<HttpAuthController>& GetAuthController() const override;
bool IsUsingSpdy() const override;
- NextProto GetProtocolNegotiated() const override;
+ NextProto GetProxyNegotiatedProtocol() const override;
// StreamSocket implementation.
int Connect(const CompletionCallback& callback) override;
void Disconnect() override;
bool IsConnected() const override;
bool IsConnectedAndIdle() const override;
- const BoundNetLog& NetLog() const override;
+ const NetLogWithSource& NetLog() const override;
void SetSubresourceSpeculation() override;
void SetOmniboxSpeculation() override;
bool WasEverUsed() const override;
@@ -150,7 +150,7 @@ class NET_EXPORT_PRIVATE HttpProxyClientSocket : public ProxyClientSocket {
// If true, then the connection to the proxy is a SPDY connection.
const bool using_spdy_;
// Protocol negotiated with the server.
- NextProto protocol_negotiated_;
+ NextProto negotiated_protocol_;
// If true, then SSL is used to communicate with this proxy
const bool is_https_proxy_;
@@ -166,7 +166,7 @@ class NET_EXPORT_PRIVATE HttpProxyClientSocket : public ProxyClientSocket {
// This delegate must outlive this proxy client socket.
ProxyDelegate* proxy_delegate_;
- const BoundNetLog net_log_;
+ const NetLogWithSource net_log_;
DISALLOW_COPY_AND_ASSIGN(HttpProxyClientSocket);
};