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

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

Issue 1808001: Implement a 15 connection per proxy server limit. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Remove extra newline. Created 10 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 355
356 // The time the Start method was called. 356 // The time the Start method was called.
357 base::Time start_time_; 357 base::Time start_time_;
358 358
359 // The time the DoSSLConnect() method was called (if it got called). 359 // The time the DoSSLConnect() method was called (if it got called).
360 base::TimeTicks ssl_connect_start_time_; 360 base::TimeTicks ssl_connect_start_time_;
361 361
362 // The next state in the state machine. 362 // The next state in the state machine.
363 State next_state_; 363 State next_state_;
364 364
365 // The hostname and port of the peer. This is not necessarily the one 365 // The hostname and port of the endpoint. This is not necessarily the one
366 // specified by the URL, due to Alternate-Protocol or proxies. 366 // specified by the URL, due to Alternate-Protocol or fixed testing ports.
367 HostPortPair peer_; 367 HostPortPair endpoint_;
368 368
369 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); 369 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction);
370 }; 370 };
371 371
372 } // namespace net 372 } // namespace net
373 373
374 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 374 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698