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

Unified Diff: webkit/glue/resource_loader_bridge.cc

Issue 12094085: LoadTiming in net part 7: Hooking it all up (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Sync Created 7 years, 10 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
Index: webkit/glue/resource_loader_bridge.cc
===================================================================
--- webkit/glue/resource_loader_bridge.cc (revision 184957)
+++ webkit/glue/resource_loader_bridge.cc (working copy)
@@ -9,23 +9,6 @@
namespace webkit_glue {
-ResourceLoadTimingInfo::ResourceLoadTimingInfo()
- : proxy_start(-1),
- proxy_end(-1),
- dns_start(-1),
- dns_end(-1),
- connect_start(-1),
- connect_end(-1),
- ssl_start(-1),
- ssl_end(-1),
- send_start(0),
- send_end(0),
- receive_headers_start(0),
- receive_headers_end(0) {
-}
-
-ResourceLoadTimingInfo::~ResourceLoadTimingInfo() {}
-
ResourceDevToolsInfo::ResourceDevToolsInfo()
: http_status_code(0) {
}
@@ -36,8 +19,6 @@
: content_length(-1),
encoded_data_length(-1),
appcache_id(appcache::kNoCacheId),
- connection_id(0),
- connection_reused(false),
was_fetched_via_spdy(false),
was_npn_negotiated(false),
was_alternate_protocol_available(false),

Powered by Google App Engine
This is Rietveld 408576698