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

Side by Side Diff: net/http/http_network_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 #ifndef NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 5 #ifndef NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <string> 11 #include <string>
12 12
13 #include "base/gtest_prod_util.h" 13 #include "base/gtest_prod_util.h"
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
16 #include "base/time/time.h" 16 #include "base/time/time.h"
17 #include "crypto/ec_private_key.h" 17 #include "crypto/ec_private_key.h"
18 #include "net/base/net_error_details.h" 18 #include "net/base/net_error_details.h"
19 #include "net/base/request_priority.h" 19 #include "net/base/request_priority.h"
20 #include "net/http/http_auth.h" 20 #include "net/http/http_auth.h"
21 #include "net/http/http_request_headers.h" 21 #include "net/http/http_request_headers.h"
22 #include "net/http/http_response_info.h" 22 #include "net/http/http_response_info.h"
23 #include "net/http/http_stream_factory.h" 23 #include "net/http/http_stream_factory.h"
24 #include "net/http/http_transaction.h" 24 #include "net/http/http_transaction.h"
25 #include "net/log/net_log.h" 25 #include "net/log/net_log_with_source.h"
26 #include "net/proxy/proxy_service.h" 26 #include "net/proxy/proxy_service.h"
27 #include "net/socket/connection_attempts.h" 27 #include "net/socket/connection_attempts.h"
28 #include "net/ssl/channel_id_service.h" 28 #include "net/ssl/channel_id_service.h"
29 #include "net/ssl/ssl_config_service.h" 29 #include "net/ssl/ssl_config_service.h"
30 #include "net/websockets/websocket_handshake_stream_base.h" 30 #include "net/websockets/websocket_handshake_stream_base.h"
31 31
32 namespace crypto { 32 namespace crypto {
33 class ECPrivateKey; 33 class ECPrivateKey;
34 } 34 }
35 35
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 ConnectionAttempts connection_attempts_; 376 ConnectionAttempts connection_attempts_;
377 IPEndPoint remote_endpoint_; 377 IPEndPoint remote_endpoint_;
378 // Network error details for this transaction. 378 // Network error details for this transaction.
379 NetErrorDetails net_error_details_; 379 NetErrorDetails net_error_details_;
380 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); 380 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction);
381 }; 381 };
382 382
383 } // namespace net 383 } // namespace net
384 384
385 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 385 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698