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

Unified Diff: content/browser/renderer_host/resource_dispatcher_host.cc

Issue 7602023: Use a monotonic clock (TimeTicks) to report network times to WebCore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added comment Created 9 years, 4 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: content/browser/renderer_host/resource_dispatcher_host.cc
diff --git a/content/browser/renderer_host/resource_dispatcher_host.cc b/content/browser/renderer_host/resource_dispatcher_host.cc
index 470f99a59313424ce63b6fe7d55b33cab94a1cb7..55a1bddace69f01129a7e8725f5b4603b5483e7b 100644
--- a/content/browser/renderer_host/resource_dispatcher_host.cc
+++ b/content/browser/renderer_host/resource_dispatcher_host.cc
@@ -148,8 +148,8 @@ void AbortRequestBeforeItStarts(ResourceMessageFilter* filter,
route_id,
request_id,
status,
- std::string(), // No security info needed, connection was not
- base::Time())); // established.
+ std::string(), // No security info needed, connection not established.
+ base::TimeTicks()));
}
}

Powered by Google App Engine
This is Rietveld 408576698