diff options
author | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-21 18:23:25 +0000 |
---|---|---|
committer | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-21 18:23:25 +0000 |
commit | 58e32bb4ef2ea561fddca0271d0d9e0e3fe24ee1 (patch) | |
tree | 264d6e557346f132600aad2e2b683cccc37a3aa6 /net/http/http_cache_transaction.h | |
parent | b1d2c7467b805b0e2d5f7fe6d8fd39e2cb06d4c8 (diff) | |
download | chromium_src-58e32bb4ef2ea561fddca0271d0d9e0e3fe24ee1.zip chromium_src-58e32bb4ef2ea561fddca0271d0d9e0e3fe24ee1.tar.gz chromium_src-58e32bb4ef2ea561fddca0271d0d9e0e3fe24ee1.tar.bz2 |
LoadTiming in net, part 3.
Add send and receive times to HttpNetworkTransaction.
Add LoadTimingInfo accessors to Http*Transaction,
URLRequestJob, and URLRequest classes.
Proxy resolution times still need to be added.
BUG=77446
Review URL: https://chromiumcodereview.appspot.com/11929017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177942 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_cache_transaction.h')
-rw-r--r-- | net/http/http_cache_transaction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/http/http_cache_transaction.h b/net/http/http_cache_transaction.h index 86e42f6..bd5a46f 100644 --- a/net/http/http_cache_transaction.h +++ b/net/http/http_cache_transaction.h @@ -122,6 +122,8 @@ class HttpCache::Transaction : public HttpTransaction { virtual const HttpResponseInfo* GetResponseInfo() const OVERRIDE; virtual LoadState GetLoadState() const OVERRIDE; virtual UploadProgress GetUploadProgress(void) const OVERRIDE; + virtual bool GetLoadTimingInfo( + LoadTimingInfo* load_timing_info) const OVERRIDE; private: static const size_t kNumValidationHeaders = 2; |