OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_ | 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_ |
6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_ | 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 namespace net { | 25 namespace net { |
26 class AuthCredentials; | 26 class AuthCredentials; |
27 class BoundNetLog; | 27 class BoundNetLog; |
28 class HttpRequestHeaders; | 28 class HttpRequestHeaders; |
29 struct HttpRequestInfo; | 29 struct HttpRequestInfo; |
30 class HttpResponseInfo; | 30 class HttpResponseInfo; |
31 class HttpNetworkSession; | 31 class HttpNetworkSession; |
32 class IOBuffer; | 32 class IOBuffer; |
33 struct LoadTimingInfo; | 33 struct LoadTimingInfo; |
| 34 class SSLPrivateKey; |
34 class UploadProgress; | 35 class UploadProgress; |
35 class X509Certificate; | 36 class X509Certificate; |
36 } // namespace net | 37 } // namespace net |
37 | 38 |
38 namespace test { | 39 namespace test { |
39 class DevToolsNetworkControllerHelper; | 40 class DevToolsNetworkControllerHelper; |
40 } | 41 } |
41 | 42 |
42 // DevToolsNetworkTransaction is a wrapper for network transaction. All | 43 // DevToolsNetworkTransaction is a wrapper for network transaction. All |
43 // HttpTransaction methods are proxied to real transaction, but |callback| | 44 // HttpTransaction methods are proxied to real transaction, but |callback| |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 | 128 |
128 const net::HttpRequestInfo* request_; | 129 const net::HttpRequestInfo* request_; |
129 | 130 |
130 // True if Fail was already invoked. | 131 // True if Fail was already invoked. |
131 bool failed_; | 132 bool failed_; |
132 | 133 |
133 DISALLOW_COPY_AND_ASSIGN(DevToolsNetworkTransaction); | 134 DISALLOW_COPY_AND_ASSIGN(DevToolsNetworkTransaction); |
134 }; | 135 }; |
135 | 136 |
136 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_ | 137 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_ |
OLD | NEW |