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

Side by Side Diff: net/http/http_cache_transaction.h

Issue 2333923004: Extracting NetLog inner classes into their own classes. (Closed)
Patch Set: Some nit fixes and better, impl-agnostic naming of net_log_parameters_callback_typedef.h -> net/log… Created 4 years, 2 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
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 // 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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698