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

Unified Diff: net/spdy/spdy_proxy_client_socket_unittest.cc

Issue 16434016: Rewrite scoped_ptr<T>(NULL) to use the default ctor in net/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | « net/socket/tcp_listen_socket_unittest.cc ('k') | net/test/embedded_test_server/embedded_test_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_proxy_client_socket_unittest.cc
diff --git a/net/spdy/spdy_proxy_client_socket_unittest.cc b/net/spdy/spdy_proxy_client_socket_unittest.cc
index fe626de26efa7263ca1a2e03cf075ffc46ba6ef1..0e7da9a76af63c5c840a24d7e32e11a560ec668b 100644
--- a/net/spdy/spdy_proxy_client_socket_unittest.cc
+++ b/net/spdy/spdy_proxy_client_socket_unittest.cc
@@ -140,8 +140,6 @@ INSTANTIATE_TEST_CASE_P(NextProto,
SpdyProxyClientSocketTest::SpdyProxyClientSocketTest()
: spdy_util_(GetParam()),
- sock_(NULL),
- data_(NULL),
session_(NULL),
read_buf_(NULL),
session_deps_(GetParam()),
@@ -153,7 +151,8 @@ SpdyProxyClientSocketTest::SpdyProxyClientSocketTest()
proxy_host_port_(kProxyHost, kProxyPort),
endpoint_host_port_pair_(kOriginHost, kOriginPort),
proxy_(ProxyServer::SCHEME_HTTPS, proxy_host_port_),
- endpoint_spdy_session_key_(endpoint_host_port_pair_, proxy_,
+ endpoint_spdy_session_key_(endpoint_host_port_pair_,
+ proxy_,
kPrivacyModeDisabled),
transport_params_(new TransportSocketParams(proxy_host_port_,
LOWEST,
« no previous file with comments | « net/socket/tcp_listen_socket_unittest.cc ('k') | net/test/embedded_test_server/embedded_test_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698