Index: net/http/http_transaction_unittest.h |
=================================================================== |
--- net/http/http_transaction_unittest.h (revision 152798) |
+++ net/http/http_transaction_unittest.h (working copy) |
@@ -48,6 +48,11 @@ |
std::string* response_data); |
struct MockTransaction { |
+ // Net error code returned as a result of starting the transaction. If not |
+ // net::OK, all response-related fields will be ignored. Must not be |
+ // ERR_IO_PENDING. |
+ net::Error start_result; |
+ |
const char* url; |
const char* method; |
// If |request_time| is unspecified, the current time will be used. |