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

Side by Side Diff: net/http/http_network_session.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/http/http_network_layer_unittest.cc ('k') | net/http/http_network_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) 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_SESSION_H_ 5 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_
6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 10 matching lines...) Expand all
21 #include "base/memory/ref_counted.h" 21 #include "base/memory/ref_counted.h"
22 #include "base/memory/weak_ptr.h" 22 #include "base/memory/weak_ptr.h"
23 #include "base/threading/non_thread_safe.h" 23 #include "base/threading/non_thread_safe.h"
24 #include "net/base/host_port_pair.h" 24 #include "net/base/host_port_pair.h"
25 #include "net/base/net_export.h" 25 #include "net/base/net_export.h"
26 #include "net/dns/host_resolver.h" 26 #include "net/dns/host_resolver.h"
27 #include "net/http/http_auth_cache.h" 27 #include "net/http/http_auth_cache.h"
28 #include "net/http/http_stream_factory.h" 28 #include "net/http/http_stream_factory.h"
29 #include "net/quic/chromium/quic_stream_factory.h" 29 #include "net/quic/chromium/quic_stream_factory.h"
30 #include "net/socket/next_proto.h" 30 #include "net/socket/next_proto.h"
31 #include "net/spdy/spdy_protocol.h" 31 #include "net/spdy/chromium/spdy_session_pool.h"
32 #include "net/spdy/spdy_session_pool.h" 32 #include "net/spdy/core/spdy_protocol.h"
33 #include "net/ssl/ssl_client_auth_cache.h" 33 #include "net/ssl/ssl_client_auth_cache.h"
34 34
35 namespace base { 35 namespace base {
36 class Value; 36 class Value;
37 namespace trace_event { 37 namespace trace_event {
38 class ProcessMemoryDump; 38 class ProcessMemoryDump;
39 } 39 }
40 } 40 }
41 41
42 namespace net { 42 namespace net {
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 NextProtoVector next_protos_; 326 NextProtoVector next_protos_;
327 327
328 Params params_; 328 Params params_;
329 329
330 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; 330 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_;
331 }; 331 };
332 332
333 } // namespace net 333 } // namespace net
334 334
335 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ 335 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_
OLDNEW
« no previous file with comments | « net/http/http_network_layer_unittest.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698