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

Side by Side Diff: net/http/http_network_transaction.h

Issue 1488593002: Re-enable HTTP/2 over NPN (for OpenSSL). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2564
Patch Set: 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
« no previous file with comments | « net/http/http_network_session.cc ('k') | net/http/http_network_transaction_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 5 #ifndef NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 const ProxyInfo& used_proxy_info, 107 const ProxyInfo& used_proxy_info,
108 HttpStream* stream) override; 108 HttpStream* stream) override;
109 109
110 void GetConnectionAttempts(ConnectionAttempts* out) const override; 110 void GetConnectionAttempts(ConnectionAttempts* out) const override;
111 111
112 private: 112 private:
113 friend class HttpNetworkTransactionSSLTest; 113 friend class HttpNetworkTransactionSSLTest;
114 114
115 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest, 115 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest,
116 ResetStateForRestart); 116 ResetStateForRestart);
117 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest, EnableNPN);
118 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest, DisableNPN);
117 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, 119 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest,
118 WindowUpdateReceived); 120 WindowUpdateReceived);
119 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, 121 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest,
120 WindowUpdateSent); 122 WindowUpdateSent);
121 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, 123 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest,
122 WindowUpdateOverflow); 124 WindowUpdateOverflow);
123 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, 125 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest,
124 FlowControlStallResume); 126 FlowControlStallResume);
125 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, 127 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest,
126 FlowControlStallResumeAfterSettings); 128 FlowControlStallResumeAfterSettings);
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 355
354 ConnectionAttempts connection_attempts_; 356 ConnectionAttempts connection_attempts_;
355 IPEndPoint remote_endpoint_; 357 IPEndPoint remote_endpoint_;
356 358
357 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); 359 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction);
358 }; 360 };
359 361
360 } // namespace net 362 } // namespace net
361 363
362 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 364 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
OLDNEW
« no previous file with comments | « net/http/http_network_session.cc ('k') | net/http/http_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698