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

Side by Side Diff: net/spdy/chromium/spdy_session_pool.h

Issue 2832973003: Split net/spdy into core and chromium subdirectories. (Closed)
Patch Set: Fix some more build rules. Created 3 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/chromium/spdy_session_key.cc ('k') | net/spdy/chromium/spdy_session_pool.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_SPDY_SPDY_SESSION_POOL_H_ 5 #ifndef NET_SPDY_SPDY_SESSION_POOL_H_
6 #define NET_SPDY_SPDY_SESSION_POOL_H_ 6 #define NET_SPDY_SPDY_SESSION_POOL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 #include <set> 12 #include <set>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
17 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
18 #include "net/base/host_port_pair.h" 18 #include "net/base/host_port_pair.h"
19 #include "net/base/ip_endpoint.h" 19 #include "net/base/ip_endpoint.h"
20 #include "net/base/net_errors.h" 20 #include "net/base/net_errors.h"
21 #include "net/base/net_export.h" 21 #include "net/base/net_export.h"
22 #include "net/base/network_change_notifier.h" 22 #include "net/base/network_change_notifier.h"
23 #include "net/cert/cert_database.h" 23 #include "net/cert/cert_database.h"
24 #include "net/proxy/proxy_config.h" 24 #include "net/proxy/proxy_config.h"
25 #include "net/proxy/proxy_server.h" 25 #include "net/proxy/proxy_server.h"
26 #include "net/spdy/chromium/server_push_delegate.h"
27 #include "net/spdy/chromium/spdy_session_key.h"
28 #include "net/spdy/core/spdy_protocol.h"
26 #include "net/spdy/platform/api/spdy_string.h" 29 #include "net/spdy/platform/api/spdy_string.h"
27 #include "net/spdy/server_push_delegate.h"
28 #include "net/spdy/spdy_protocol.h"
29 #include "net/spdy/spdy_session_key.h"
30 #include "net/ssl/ssl_config_service.h" 30 #include "net/ssl/ssl_config_service.h"
31 31
32 namespace base { 32 namespace base {
33 namespace trace_event { 33 namespace trace_event {
34 class ProcessMemoryDump; 34 class ProcessMemoryDump;
35 } 35 }
36 } 36 }
37 37
38 namespace net { 38 namespace net {
39 39
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 // resources from origins that are different from those of their associated 252 // resources from origins that are different from those of their associated
253 // streams. May be nullptr. 253 // streams. May be nullptr.
254 ProxyDelegate* proxy_delegate_; 254 ProxyDelegate* proxy_delegate_;
255 255
256 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool); 256 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool);
257 }; 257 };
258 258
259 } // namespace net 259 } // namespace net
260 260
261 #endif // NET_SPDY_SPDY_SESSION_POOL_H_ 261 #endif // NET_SPDY_SPDY_SESSION_POOL_H_
OLDNEW
« no previous file with comments | « net/spdy/chromium/spdy_session_key.cc ('k') | net/spdy/chromium/spdy_session_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698