| 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_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 <list> | 8 #include <list> |
| 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 "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
| 16 #include "net/base/bandwidth_metrics.h" | 16 #include "net/base/bandwidth_metrics.h" |
| 17 #include "net/base/io_buffer.h" | 17 #include "net/base/io_buffer.h" |
| 18 #include "net/base/net_export.h" | 18 #include "net/base/net_export.h" |
| 19 #include "net/base/net_log.h" | 19 #include "net/base/net_log.h" |
| 20 #include "net/base/request_priority.h" | 20 #include "net/base/request_priority.h" |
| 21 #include "net/base/server_bound_cert_service.h" | |
| 22 #include "net/base/ssl_client_cert_type.h" | |
| 23 #include "net/socket/ssl_client_socket.h" | 21 #include "net/socket/ssl_client_socket.h" |
| 24 #include "net/spdy/spdy_framer.h" | 22 #include "net/spdy/spdy_framer.h" |
| 25 #include "net/spdy/spdy_header_block.h" | 23 #include "net/spdy/spdy_header_block.h" |
| 26 #include "net/spdy/spdy_protocol.h" | 24 #include "net/spdy/spdy_protocol.h" |
| 27 #include "net/spdy/spdy_session.h" | 25 #include "net/spdy/spdy_session.h" |
| 26 #include "net/ssl/server_bound_cert_service.h" |
| 27 #include "net/ssl/ssl_client_cert_type.h" |
| 28 | 28 |
| 29 namespace net { | 29 namespace net { |
| 30 | 30 |
| 31 class AddressList; | 31 class AddressList; |
| 32 class IPEndPoint; | 32 class IPEndPoint; |
| 33 class SSLCertRequestInfo; | 33 class SSLCertRequestInfo; |
| 34 class SSLInfo; | 34 class SSLInfo; |
| 35 | 35 |
| 36 // The SpdyStream is used by the SpdySession to represent each stream known | 36 // The SpdyStream is used by the SpdySession to represent each stream known |
| 37 // on the SpdySession. This class provides interfaces for SpdySession to use. | 37 // on the SpdySession. This class provides interfaces for SpdySession to use. |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 std::string domain_bound_private_key_; | 427 std::string domain_bound_private_key_; |
| 428 std::string domain_bound_cert_; | 428 std::string domain_bound_cert_; |
| 429 ServerBoundCertService::RequestHandle domain_bound_cert_request_handle_; | 429 ServerBoundCertService::RequestHandle domain_bound_cert_request_handle_; |
| 430 | 430 |
| 431 DISALLOW_COPY_AND_ASSIGN(SpdyStream); | 431 DISALLOW_COPY_AND_ASSIGN(SpdyStream); |
| 432 }; | 432 }; |
| 433 | 433 |
| 434 } // namespace net | 434 } // namespace net |
| 435 | 435 |
| 436 #endif // NET_SPDY_SPDY_STREAM_H_ | 436 #endif // NET_SPDY_SPDY_STREAM_H_ |
| OLD | NEW |