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

Side by Side Diff: net/spdy/chromium/spdy_stream.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_unittest.cc ('k') | net/spdy/chromium/spdy_stream.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_STREAM_H_ 5 #ifndef NET_SPDY_SPDY_STREAM_H_
6 #define NET_SPDY_SPDY_STREAM_H_ 6 #define NET_SPDY_SPDY_STREAM_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <deque> 11 #include <deque>
12 #include <memory> 12 #include <memory>
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/io_buffer.h" 18 #include "net/base/io_buffer.h"
19 #include "net/base/net_export.h" 19 #include "net/base/net_export.h"
20 #include "net/base/request_priority.h" 20 #include "net/base/request_priority.h"
21 #include "net/log/net_log_source.h" 21 #include "net/log/net_log_source.h"
22 #include "net/log/net_log_with_source.h" 22 #include "net/log/net_log_with_source.h"
23 #include "net/socket/next_proto.h" 23 #include "net/socket/next_proto.h"
24 #include "net/socket/ssl_client_socket.h" 24 #include "net/socket/ssl_client_socket.h"
25 #include "net/spdy/chromium/spdy_buffer.h"
26 #include "net/spdy/core/spdy_framer.h"
27 #include "net/spdy/core/spdy_header_block.h"
28 #include "net/spdy/core/spdy_protocol.h"
25 #include "net/spdy/platform/api/spdy_string.h" 29 #include "net/spdy/platform/api/spdy_string.h"
26 #include "net/spdy/spdy_buffer.h"
27 #include "net/spdy/spdy_framer.h"
28 #include "net/spdy/spdy_header_block.h"
29 #include "net/spdy/spdy_protocol.h"
30 #include "net/ssl/ssl_client_cert_type.h" 30 #include "net/ssl/ssl_client_cert_type.h"
31 #include "url/gurl.h" 31 #include "url/gurl.h"
32 32
33 namespace net { 33 namespace net {
34 34
35 class IPEndPoint; 35 class IPEndPoint;
36 struct LoadTimingInfo; 36 struct LoadTimingInfo;
37 class SSLInfo; 37 class SSLInfo;
38 class SpdySession; 38 class SpdySession;
39 39
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 bool write_handler_guard_; 524 bool write_handler_guard_;
525 525
526 base::WeakPtrFactory<SpdyStream> weak_ptr_factory_; 526 base::WeakPtrFactory<SpdyStream> weak_ptr_factory_;
527 527
528 DISALLOW_COPY_AND_ASSIGN(SpdyStream); 528 DISALLOW_COPY_AND_ASSIGN(SpdyStream);
529 }; 529 };
530 530
531 } // namespace net 531 } // namespace net
532 532
533 #endif // NET_SPDY_SPDY_STREAM_H_ 533 #endif // NET_SPDY_SPDY_STREAM_H_
OLDNEW
« no previous file with comments | « net/spdy/chromium/spdy_session_unittest.cc ('k') | net/spdy/chromium/spdy_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698