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

Unified Diff: blimp/net/tcp_client_transport.h

Issue 1757153002: Revert of Blimp: add support for SSL connections. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/net/ssl_client_transport_unittest.cc ('k') | blimp/net/tcp_client_transport.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/tcp_client_transport.h
diff --git a/blimp/net/tcp_client_transport.h b/blimp/net/tcp_client_transport.h
index 6a879fee73690fb52388d0203cfd4d0fccab8d20..3242883e0519464c7daf21413e2e6cb36272de58 100644
--- a/blimp/net/tcp_client_transport.h
+++ b/blimp/net/tcp_client_transport.h
@@ -4,8 +4,6 @@
#ifndef BLIMP_NET_TCP_CLIENT_TRANSPORT_H_
#define BLIMP_NET_TCP_CLIENT_TRANSPORT_H_
-
-#include <string>
#include "base/callback.h"
#include "base/macros.h"
@@ -16,7 +14,6 @@
#include "net/base/net_errors.h"
namespace net {
-class ClientSocketFactory;
class NetLog;
class StreamSocket;
} // namespace net
@@ -29,38 +26,21 @@
// |addresses| on each call to Connect().
class BLIMP_NET_EXPORT TCPClientTransport : public BlimpTransport {
public:
- TCPClientTransport(const net::IPEndPoint& ip_endpoint, net::NetLog* net_log);
+ TCPClientTransport(const net::AddressList& addresses, net::NetLog* net_log);
~TCPClientTransport() override;
-
- void SetClientSocketFactoryForTest(net::ClientSocketFactory* factory);
// BlimpTransport implementation.
void Connect(const net::CompletionCallback& callback) override;
scoped_ptr<BlimpConnection> TakeConnection() override;
- const char* GetName() const override;
-
- protected:
- // Called when the TCP connection completed.
- virtual void OnTCPConnectComplete(int result);
-
- // Called when the connection attempt completed or failed.
- // Resets |socket_| if |result| indicates a failure (!= net::OK).
- void OnConnectComplete(int result);
-
- // Methods for taking and setting |socket_|. Can be used by subclasses to
- // swap out a socket for an upgraded one, e.g. adding SSL encryption.
- scoped_ptr<net::StreamSocket> TakeSocket();
- void SetSocket(scoped_ptr<net::StreamSocket> socket);
-
- // Gets the socket factory instance.
- net::ClientSocketFactory* socket_factory() const;
+ const std::string GetName() const override;
private:
- net::IPEndPoint ip_endpoint_;
+ void OnTCPConnectComplete(int result);
+
+ net::AddressList addresses_;
net::NetLog* net_log_;
+ scoped_ptr<net::StreamSocket> socket_;
net::CompletionCallback connect_callback_;
- net::ClientSocketFactory* socket_factory_ = nullptr;
- scoped_ptr<net::StreamSocket> socket_;
DISALLOW_COPY_AND_ASSIGN(TCPClientTransport);
};
« no previous file with comments | « blimp/net/ssl_client_transport_unittest.cc ('k') | blimp/net/tcp_client_transport.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698