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

Unified Diff: webkit/glue/resource_loader_bridge.h

Issue 3028026: Fix bug which caused DNS time not to be reported by LoadTimingObserver. (Closed)
Patch Set: Indentation fix Created 10 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/net/load_timing_observer_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/resource_loader_bridge.h
diff --git a/webkit/glue/resource_loader_bridge.h b/webkit/glue/resource_loader_bridge.h
index 7d85bd3e52ea692c501f89572ce7ece8eb15b7e1..e4d439f08aa178e9ad3dd0e691ecdd2d933d6791 100644
--- a/webkit/glue/resource_loader_bridge.h
+++ b/webkit/glue/resource_loader_bridge.h
@@ -117,12 +117,12 @@ class ResourceLoaderBridge {
// The time that DNS lookup ended. For reused sockets this time is -1.
int32 dns_end;
- // The time that establishing connection started. For reused sockets
- // this time is -1. Connect time includes dns time.
+ // The time that establishing connection started. Connect time includes
+ // DNS, blocking, TCP, TCP retries and SSL time.
int32 connect_start;
- // The time that establishing connection ended. For reused sockets this
- // time is -1. Connect time includes dns time.
+ // The time that establishing connection ended. Connect time includes
+ // DNS, blocking, TCP, TCP retries and SSL time.
int32 connect_end;
// The time at which SSL handshake started. For non-HTTPS requests this
« no previous file with comments | « chrome/browser/net/load_timing_observer_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698