diff options
Diffstat (limited to 'net/http/http_network_transaction.h')
-rw-r--r-- | net/http/http_network_transaction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/http/http_network_transaction.h b/net/http/http_network_transaction.h index 9a0b8e9..088a090 100644 --- a/net/http/http_network_transaction.h +++ b/net/http/http_network_transaction.h @@ -8,6 +8,7 @@ #include <string> #include "base/ref_counted.h" +#include "base/time.h" #include "net/base/address_list.h" #include "net/base/client_socket_handle.h" #include "net/base/host_resolver.h" @@ -281,6 +282,9 @@ class HttpNetworkTransaction : public HttpTransaction { scoped_refptr<IOBuffer> read_buf_; int read_buf_len_; + // The time the Start method was called. + base::Time start_time_; + enum State { STATE_RESOLVE_PROXY, STATE_RESOLVE_PROXY_COMPLETE, |