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

Side by Side Diff: net/http/http_stream_factory_impl_request.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/http/http_stream_factory_impl.cc ('k') | net/http/http_stream_parser_unittest.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_STREAM_FACTORY_IMPL_REQUEST_H_ 5 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_REQUEST_H_
6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_REQUEST_H_ 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_REQUEST_H_
7 7
8 #include <set> 8 #include <set>
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "googleurl/src/gurl.h"
11 #include "net/base/net_log.h" 10 #include "net/base/net_log.h"
12 #include "net/http/http_stream_factory_impl.h" 11 #include "net/http/http_stream_factory_impl.h"
13 #include "net/socket/ssl_client_socket.h" 12 #include "net/socket/ssl_client_socket.h"
14 #include "net/spdy/spdy_session_key.h" 13 #include "net/spdy/spdy_session_key.h"
14 #include "url/gurl.h"
15 15
16 namespace net { 16 namespace net {
17 17
18 class ClientSocketHandle; 18 class ClientSocketHandle;
19 class SpdySession; 19 class SpdySession;
20 20
21 class HttpStreamFactoryImpl::Request : public HttpStreamRequest { 21 class HttpStreamFactoryImpl::Request : public HttpStreamRequest {
22 public: 22 public:
23 Request(const GURL& url, 23 Request(const GURL& url,
24 HttpStreamFactoryImpl* factory, 24 HttpStreamFactoryImpl* factory,
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 // Protocol negotiated with the server. 138 // Protocol negotiated with the server.
139 NextProto protocol_negotiated_; 139 NextProto protocol_negotiated_;
140 bool using_spdy_; 140 bool using_spdy_;
141 141
142 DISALLOW_COPY_AND_ASSIGN(Request); 142 DISALLOW_COPY_AND_ASSIGN(Request);
143 }; 143 };
144 144
145 } // namespace net 145 } // namespace net
146 146
147 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_REQUEST_H_ 147 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_REQUEST_H_
OLDNEW
« no previous file with comments | « net/http/http_stream_factory_impl.cc ('k') | net/http/http_stream_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698