Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(371)

Side by Side Diff: jingle/notifier/base/proxy_resolving_client_socket.h

Issue 10690122: Change SpdySession::GetSSLInfo to get the SSLInfo from the underlying socket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Actual working test Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // This StreamSocket implementation wraps a ClientSocketHandle that is created 5 // This StreamSocket implementation wraps a ClientSocketHandle that is created
6 // from the client socket pool after resolving proxies. 6 // from the client socket pool after resolving proxies.
7 7
8 #ifndef JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_ 8 #ifndef JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_
9 #define JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_ 9 #define JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_
10 #pragma once 10 #pragma once
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 virtual bool IsConnectedAndIdle() const OVERRIDE; 60 virtual bool IsConnectedAndIdle() const OVERRIDE;
61 virtual int GetPeerAddress(net::IPEndPoint* address) const OVERRIDE; 61 virtual int GetPeerAddress(net::IPEndPoint* address) const OVERRIDE;
62 virtual int GetLocalAddress(net::IPEndPoint* address) const OVERRIDE; 62 virtual int GetLocalAddress(net::IPEndPoint* address) const OVERRIDE;
63 virtual const net::BoundNetLog& NetLog() const OVERRIDE; 63 virtual const net::BoundNetLog& NetLog() const OVERRIDE;
64 virtual void SetSubresourceSpeculation() OVERRIDE; 64 virtual void SetSubresourceSpeculation() OVERRIDE;
65 virtual void SetOmniboxSpeculation() OVERRIDE; 65 virtual void SetOmniboxSpeculation() OVERRIDE;
66 virtual bool WasEverUsed() const OVERRIDE; 66 virtual bool WasEverUsed() const OVERRIDE;
67 virtual bool UsingTCPFastOpen() const OVERRIDE; 67 virtual bool UsingTCPFastOpen() const OVERRIDE;
68 virtual int64 NumBytesRead() const OVERRIDE; 68 virtual int64 NumBytesRead() const OVERRIDE;
69 virtual base::TimeDelta GetConnectTimeMicros() const OVERRIDE; 69 virtual base::TimeDelta GetConnectTimeMicros() const OVERRIDE;
70 virtual bool WasNpnNegotiated() const OVERRIDE;
70 virtual net::NextProto GetNegotiatedProtocol() const OVERRIDE; 71 virtual net::NextProto GetNegotiatedProtocol() const OVERRIDE;
72 virtual bool GetSSLInfo(net::SSLInfo* ssl_info) const OVERRIDE;
71 73
72 private: 74 private:
73 // Proxy resolution and connection functions. 75 // Proxy resolution and connection functions.
74 void ProcessProxyResolveDone(int status); 76 void ProcessProxyResolveDone(int status);
75 void ProcessConnectDone(int status); 77 void ProcessConnectDone(int status);
76 78
77 void CloseTransportSocket(); 79 void CloseTransportSocket();
78 void RunUserConnectCallback(int status); 80 void RunUserConnectCallback(int status);
79 int ReconsiderProxyAfterError(int error); 81 int ReconsiderProxyAfterError(int error);
80 void ReportSuccessfulProxyConnection(); 82 void ReportSuccessfulProxyConnection();
(...skipping 15 matching lines...) Expand all
96 net::BoundNetLog bound_net_log_; 98 net::BoundNetLog bound_net_log_;
97 base::WeakPtrFactory<ProxyResolvingClientSocket> weak_factory_; 99 base::WeakPtrFactory<ProxyResolvingClientSocket> weak_factory_;
98 100
99 // The callback passed to Connect(). 101 // The callback passed to Connect().
100 net::CompletionCallback user_connect_callback_; 102 net::CompletionCallback user_connect_callback_;
101 }; 103 };
102 104
103 } // namespace notifier 105 } // namespace notifier
104 106
105 #endif // JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_ 107 #endif // JINGLE_NOTIFIER_BASE_PROXY_RESOLVING_CLIENT_SOCKET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698