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

Side by Side Diff: net/http/http_network_transaction_unittest.cc

Issue 1326503003: Added a net::BidirectionalStream to expose a bidirectional streaming interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Misha's comments Created 5 years 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "net/http/http_network_transaction.h" 5 #include "net/http/http_network_transaction.h"
6 6
7 #include <math.h> // ceil 7 #include <math.h> // ceil
8 #include <stdarg.h> 8 #include <stdarg.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 14503 matching lines...) Expand 10 before | Expand all | Expand 10 after
14514 RequestPriority priority, 14514 RequestPriority priority,
14515 const SSLConfig& server_ssl_config, 14515 const SSLConfig& server_ssl_config,
14516 const SSLConfig& proxy_ssl_config, 14516 const SSLConfig& proxy_ssl_config,
14517 HttpStreamRequest::Delegate* delegate, 14517 HttpStreamRequest::Delegate* delegate,
14518 const BoundNetLog& net_log) override { 14518 const BoundNetLog& net_log) override {
14519 FakeStreamRequest* fake_request = new FakeStreamRequest(priority, delegate); 14519 FakeStreamRequest* fake_request = new FakeStreamRequest(priority, delegate);
14520 last_stream_request_ = fake_request->AsWeakPtr(); 14520 last_stream_request_ = fake_request->AsWeakPtr();
14521 return fake_request; 14521 return fake_request;
14522 } 14522 }
14523 14523
14524 HttpStreamRequest* RequestBidirectionalStreamJob(
14525 const HttpRequestInfo& info,
14526 RequestPriority priority,
14527 const SSLConfig& server_ssl_config,
14528 const SSLConfig& proxy_ssl_config,
14529 HttpStreamRequest::Delegate* delegate,
14530 const BoundNetLog& net_log) override {
14531 NOTREACHED();
14532 return nullptr;
14533 }
14534
14524 HttpStreamRequest* RequestWebSocketHandshakeStream( 14535 HttpStreamRequest* RequestWebSocketHandshakeStream(
14525 const HttpRequestInfo& info, 14536 const HttpRequestInfo& info,
14526 RequestPriority priority, 14537 RequestPriority priority,
14527 const SSLConfig& server_ssl_config, 14538 const SSLConfig& server_ssl_config,
14528 const SSLConfig& proxy_ssl_config, 14539 const SSLConfig& proxy_ssl_config,
14529 HttpStreamRequest::Delegate* delegate, 14540 HttpStreamRequest::Delegate* delegate,
14530 WebSocketHandshakeStreamBase::CreateHelper* create_helper, 14541 WebSocketHandshakeStreamBase::CreateHelper* create_helper,
14531 const BoundNetLog& net_log) override { 14542 const BoundNetLog& net_log) override {
14532 FakeStreamRequest* fake_request = 14543 FakeStreamRequest* fake_request =
14533 new FakeStreamRequest(priority, delegate, create_helper); 14544 new FakeStreamRequest(priority, delegate, create_helper);
(...skipping 1251 matching lines...) Expand 10 before | Expand all | Expand 10 after
15785 15796
15786 scoped_ptr<HttpNetworkSession> session(CreateSession(&session_deps_)); 15797 scoped_ptr<HttpNetworkSession> session(CreateSession(&session_deps_));
15787 HttpNetworkTransaction trans(DEFAULT_PRIORITY, session.get()); 15798 HttpNetworkTransaction trans(DEFAULT_PRIORITY, session.get());
15788 15799
15789 EXPECT_THAT(trans.server_ssl_config_.alpn_protos, 15800 EXPECT_THAT(trans.server_ssl_config_.alpn_protos,
15790 testing::ElementsAre(kProtoHTTP2, kProtoSPDY31, kProtoHTTP11)); 15801 testing::ElementsAre(kProtoHTTP2, kProtoSPDY31, kProtoHTTP11));
15791 EXPECT_TRUE(trans.server_ssl_config_.npn_protos.empty()); 15802 EXPECT_TRUE(trans.server_ssl_config_.npn_protos.empty());
15792 } 15803 }
15793 15804
15794 } // namespace net 15805 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698