| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |