summaryrefslogtreecommitdiffstats
path: root/net/socket/transport_client_socket_pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/socket/transport_client_socket_pool.h')
-rw-r--r--net/socket/transport_client_socket_pool.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/socket/transport_client_socket_pool.h b/net/socket/transport_client_socket_pool.h
index bcd8703..e0b6080 100644
--- a/net/socket/transport_client_socket_pool.h
+++ b/net/socket/transport_client_socket_pool.h
@@ -24,7 +24,7 @@ namespace net {
class ClientSocketFactory;
-class NET_TEST TransportSocketParams
+class NET_EXPORT_PRIVATE TransportSocketParams
: public base::RefCounted<TransportSocketParams> {
public:
TransportSocketParams(const HostPortPair& host_port_pair,
@@ -57,7 +57,7 @@ class NET_TEST TransportSocketParams
// (kIPv6FallbackTimerInMs) and start a connect() to a IPv4 address if the timer
// fires. Then we race the IPv4 connect() against the IPv6 connect() (which has
// a headstart) and return the one that completes first to the socket pool.
-class NET_TEST TransportConnectJob : public ConnectJob {
+class NET_EXPORT_PRIVATE TransportConnectJob : public ConnectJob {
public:
TransportConnectJob(const std::string& group_name,
const scoped_refptr<TransportSocketParams>& params,
@@ -132,7 +132,7 @@ class NET_TEST TransportConnectJob : public ConnectJob {
DISALLOW_COPY_AND_ASSIGN(TransportConnectJob);
};
-class NET_TEST TransportClientSocketPool : public ClientSocketPool {
+class NET_EXPORT_PRIVATE TransportClientSocketPool : public ClientSocketPool {
public:
TransportClientSocketPool(
int max_sockets,