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

Side by Side Diff: net/spdy/spdy_session.h

Issue 1604011: Use HttpRequestHeaders for extra_headers. (Closed)
Patch Set: Address eroman comments. Created 10 years, 8 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
« no previous file with comments | « net/spdy/spdy_network_transaction_unittest.cc ('k') | net/spdy/spdy_session.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_SPDY_SPDY_SESSION_H_ 5 #ifndef NET_SPDY_SPDY_SESSION_H_
6 #define NET_SPDY_SPDY_SESSION_H_ 6 #define NET_SPDY_SPDY_SESSION_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <list> 9 #include <list>
10 #include <map> 10 #include <map>
(...skipping 12 matching lines...) Expand all
23 #include "net/socket/tcp_client_socket_pool.h" 23 #include "net/socket/tcp_client_socket_pool.h"
24 #include "net/spdy/spdy_framer.h" 24 #include "net/spdy/spdy_framer.h"
25 #include "net/spdy/spdy_io_buffer.h" 25 #include "net/spdy/spdy_io_buffer.h"
26 #include "net/spdy/spdy_protocol.h" 26 #include "net/spdy/spdy_protocol.h"
27 #include "net/spdy/spdy_session_pool.h" 27 #include "net/spdy/spdy_session_pool.h"
28 28
29 namespace net { 29 namespace net {
30 30
31 class SpdyStream; 31 class SpdyStream;
32 class HttpNetworkSession; 32 class HttpNetworkSession;
33 class HttpRequestInfo; 33 struct HttpRequestInfo;
34 class HttpResponseInfo; 34 class HttpResponseInfo;
35 class BoundNetLog; 35 class BoundNetLog;
36 class SSLInfo; 36 class SSLInfo;
37 37
38 class SpdySession : public base::RefCounted<SpdySession>, 38 class SpdySession : public base::RefCounted<SpdySession>,
39 public spdy::SpdyFramerVisitorInterface { 39 public spdy::SpdyFramerVisitorInterface {
40 public: 40 public:
41 const HostPortPair& host_port_pair() const { return host_port_pair_; } 41 const HostPortPair& host_port_pair() const { return host_port_pair_; }
42 42
43 // Connect the Spdy Socket. 43 // Connect the Spdy Socket.
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 int streams_pushed_count_; 233 int streams_pushed_count_;
234 int streams_pushed_and_claimed_count_; 234 int streams_pushed_and_claimed_count_;
235 int streams_abandoned_count_; 235 int streams_abandoned_count_;
236 236
237 static bool use_ssl_; 237 static bool use_ssl_;
238 }; 238 };
239 239
240 } // namespace net 240 } // namespace net
241 241
242 #endif // NET_SPDY_SPDY_SESSION_H_ 242 #endif // NET_SPDY_SPDY_SESSION_H_
OLDNEW
« no previous file with comments | « net/spdy/spdy_network_transaction_unittest.cc ('k') | net/spdy/spdy_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698