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 // This file declares HttpCache::Transaction, a private class of HttpCache so | 5 // This file declares HttpCache::Transaction, a private class of HttpCache so |
6 // it should only be included by http_cache.cc | 6 // it should only be included by http_cache.cc |
7 | 7 |
8 #ifndef NET_HTTP_HTTP_CACHE_TRANSACTION_H_ | 8 #ifndef NET_HTTP_HTTP_CACHE_TRANSACTION_H_ |
9 #define NET_HTTP_HTTP_CACHE_TRANSACTION_H_ | 9 #define NET_HTTP_HTTP_CACHE_TRANSACTION_H_ |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "net/base/ip_endpoint.h" | 23 #include "net/base/ip_endpoint.h" |
24 #include "net/base/load_states.h" | 24 #include "net/base/load_states.h" |
25 #include "net/base/net_error_details.h" | 25 #include "net/base/net_error_details.h" |
26 #include "net/base/request_priority.h" | 26 #include "net/base/request_priority.h" |
27 #include "net/http/http_cache.h" | 27 #include "net/http/http_cache.h" |
28 #include "net/http/http_request_headers.h" | 28 #include "net/http/http_request_headers.h" |
29 #include "net/http/http_response_headers.h" | 29 #include "net/http/http_response_headers.h" |
30 #include "net/http/http_response_info.h" | 30 #include "net/http/http_response_info.h" |
31 #include "net/http/http_transaction.h" | 31 #include "net/http/http_transaction.h" |
32 #include "net/http/partial_data.h" | 32 #include "net/http/partial_data.h" |
33 #include "net/log/net_log.h" | 33 #include "net/log/net_log_with_source.h" |
34 #include "net/socket/connection_attempts.h" | 34 #include "net/socket/connection_attempts.h" |
35 #include "net/websockets/websocket_handshake_stream_base.h" | 35 #include "net/websockets/websocket_handshake_stream_base.h" |
36 | 36 |
37 namespace net { | 37 namespace net { |
38 | 38 |
39 class PartialData; | 39 class PartialData; |
40 struct HttpRequestInfo; | 40 struct HttpRequestInfo; |
41 struct LoadTimingInfo; | 41 struct LoadTimingInfo; |
42 class SSLPrivateKey; | 42 class SSLPrivateKey; |
43 | 43 |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 BeforeHeadersSentCallback before_headers_sent_callback_; | 504 BeforeHeadersSentCallback before_headers_sent_callback_; |
505 | 505 |
506 base::WeakPtrFactory<Transaction> weak_factory_; | 506 base::WeakPtrFactory<Transaction> weak_factory_; |
507 | 507 |
508 DISALLOW_COPY_AND_ASSIGN(Transaction); | 508 DISALLOW_COPY_AND_ASSIGN(Transaction); |
509 }; | 509 }; |
510 | 510 |
511 } // namespace net | 511 } // namespace net |
512 | 512 |
513 #endif // NET_HTTP_HTTP_CACHE_TRANSACTION_H_ | 513 #endif // NET_HTTP_HTTP_CACHE_TRANSACTION_H_ |
OLD | NEW |