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

Unified Diff: net/spdy/spdy_http_stream_spdy3_unittest.cc

Issue 9959033: Move NextProto enum to a new file net/socket/next_proto.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address wtc's comments Created 8 years, 9 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/spdy/spdy_http_stream_spdy2_unittest.cc ('k') | net/spdy/spdy_network_transaction_spdy21_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_http_stream_spdy3_unittest.cc
diff --git a/net/spdy/spdy_http_stream_spdy3_unittest.cc b/net/spdy/spdy_http_stream_spdy3_unittest.cc
index 1c5d5e30aba81da629b10a9d2d5403c0f072ebdc..5cd04138ea5fb89d60ba3b258bf023c1fdc1af85 100644
--- a/net/spdy/spdy_http_stream_spdy3_unittest.cc
+++ b/net/spdy/spdy_http_stream_spdy3_unittest.cc
@@ -27,7 +27,7 @@ class SpdyHttpStreamSpdy3Test : public testing::Test {
SpdyHttpStreamSpdy3Test() {}
virtual void SetUp() {
- SpdySession::set_default_protocol(SSLClientSocket::kProtoSPDY3);
+ SpdySession::set_default_protocol(kProtoSPDY3);
}
virtual void TearDown() {
@@ -383,7 +383,7 @@ void SpdyHttpStreamSpdy3Test::TestSendCredentials(
SSLSocketDataProvider ssl(SYNCHRONOUS, OK);
ssl.domain_bound_cert_type = type;
ssl.server_bound_cert_service = server_bound_cert_service;
- ssl.protocol_negotiated = SSLClientSocket::kProtoSPDY3;
+ ssl.protocol_negotiated = kProtoSPDY3;
socket_factory->AddSSLSocketDataProvider(&ssl);
http_session_ = SpdySessionDependencies::SpdyCreateSessionDeterministic(
&session_deps_);
« no previous file with comments | « net/spdy/spdy_http_stream_spdy2_unittest.cc ('k') | net/spdy/spdy_network_transaction_spdy21_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698