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

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

Issue 6362186595172352: net: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase and revert nss_ocsp.cc changes Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « net/spdy/spdy_proxy_client_socket.cc ('k') | net/spdy/spdy_websocket_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 <deque> 8 #include <deque>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/memory/scoped_vector.h" 15 #include "base/memory/scoped_vector.h"
16 #include "base/memory/weak_ptr.h" 16 #include "base/memory/weak_ptr.h"
17 #include "googleurl/src/gurl.h"
18 #include "net/base/bandwidth_metrics.h" 17 #include "net/base/bandwidth_metrics.h"
19 #include "net/base/io_buffer.h" 18 #include "net/base/io_buffer.h"
20 #include "net/base/net_export.h" 19 #include "net/base/net_export.h"
21 #include "net/base/net_log.h" 20 #include "net/base/net_log.h"
22 #include "net/base/request_priority.h" 21 #include "net/base/request_priority.h"
23 #include "net/socket/ssl_client_socket.h" 22 #include "net/socket/ssl_client_socket.h"
24 #include "net/spdy/spdy_buffer.h" 23 #include "net/spdy/spdy_buffer.h"
25 #include "net/spdy/spdy_framer.h" 24 #include "net/spdy/spdy_framer.h"
26 #include "net/spdy/spdy_header_block.h" 25 #include "net/spdy/spdy_header_block.h"
27 #include "net/spdy/spdy_protocol.h" 26 #include "net/spdy/spdy_protocol.h"
28 #include "net/ssl/server_bound_cert_service.h" 27 #include "net/ssl/server_bound_cert_service.h"
29 #include "net/ssl/ssl_client_cert_type.h" 28 #include "net/ssl/ssl_client_cert_type.h"
29 #include "url/gurl.h"
30 30
31 namespace net { 31 namespace net {
32 32
33 class AddressList; 33 class AddressList;
34 class IPEndPoint; 34 class IPEndPoint;
35 struct LoadTimingInfo; 35 struct LoadTimingInfo;
36 class SSLCertRequestInfo; 36 class SSLCertRequestInfo;
37 class SSLInfo; 37 class SSLInfo;
38 class SpdySession; 38 class SpdySession;
39 39
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 // When OnFrameWriteComplete() is called, these variables are set. 538 // When OnFrameWriteComplete() is called, these variables are set.
539 SpdyFrameType just_completed_frame_type_; 539 SpdyFrameType just_completed_frame_type_;
540 size_t just_completed_frame_size_; 540 size_t just_completed_frame_size_;
541 541
542 DISALLOW_COPY_AND_ASSIGN(SpdyStream); 542 DISALLOW_COPY_AND_ASSIGN(SpdyStream);
543 }; 543 };
544 544
545 } // namespace net 545 } // namespace net
546 546
547 #endif // NET_SPDY_SPDY_STREAM_H_ 547 #endif // NET_SPDY_SPDY_STREAM_H_
OLDNEW
« no previous file with comments | « net/spdy/spdy_proxy_client_socket.cc ('k') | net/spdy/spdy_websocket_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698