| 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 |
| 10 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 10 #include "net/http/http_stream_factory_impl.h" | 12 #include "net/http/http_stream_factory_impl.h" |
| 11 #include "net/log/net_log.h" | 13 #include "net/log/net_log.h" |
| 12 #include "net/socket/connection_attempts.h" | 14 #include "net/socket/connection_attempts.h" |
| 13 #include "net/socket/ssl_client_socket.h" | 15 #include "net/socket/ssl_client_socket.h" |
| 14 #include "net/spdy/spdy_session_key.h" | 16 #include "net/spdy/spdy_session_key.h" |
| 15 #include "net/ssl/ssl_failure_state.h" | 17 #include "net/ssl/ssl_failure_state.h" |
| 16 #include "url/gurl.h" | 18 #include "url/gurl.h" |
| 17 | 19 |
| 18 namespace net { | 20 namespace net { |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 NextProto protocol_negotiated_; | 148 NextProto protocol_negotiated_; |
| 147 bool using_spdy_; | 149 bool using_spdy_; |
| 148 ConnectionAttempts connection_attempts_; | 150 ConnectionAttempts connection_attempts_; |
| 149 | 151 |
| 150 DISALLOW_COPY_AND_ASSIGN(Request); | 152 DISALLOW_COPY_AND_ASSIGN(Request); |
| 151 }; | 153 }; |
| 152 | 154 |
| 153 } // namespace net | 155 } // namespace net |
| 154 | 156 |
| 155 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_REQUEST_H_ | 157 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_REQUEST_H_ |
| OLD | NEW |