Index: webkit/glue/resource_loader_bridge.h |
diff --git a/webkit/glue/resource_loader_bridge.h b/webkit/glue/resource_loader_bridge.h |
index 6711039652ad869bb9584f6b524f2e50f963c0b1..c3d99135345edb25363d2cf8f9c32dbfd61b5306 100644 |
--- a/webkit/glue/resource_loader_bridge.h |
+++ b/webkit/glue/resource_loader_bridge.h |
@@ -52,8 +52,11 @@ struct ResourceLoadTimingInfo { |
ResourceLoadTimingInfo(); |
~ResourceLoadTimingInfo(); |
- // All the values in this struct are given as offsets in milliseconds wrt |
- // this base time. |
+ // All the values in this struct are given as offsets in ticks wrt |
+ // this base tick count. |
wtc
2011/08/26 23:39:15
If the values are offsets wrt base_ticks, the valu
|
+ base::TimeTicks base_ticks; |
+ |
+ // The value of Time::Now() when base_ticks was set. |
base::Time base_time; |
// The time that proxy processing started. For requests with no proxy phase, |
@@ -324,9 +327,10 @@ class ResourceLoaderBridge { |
// Called when the response is complete. This method signals completion of |
// the resource load.ff |
- virtual void OnCompletedRequest(const net::URLRequestStatus& status, |
- const std::string& security_info, |
- const base::Time& completion_time) = 0; |
+ virtual void OnCompletedRequest( |
+ const net::URLRequestStatus& status, |
+ const std::string& security_info, |
+ const base::TimeTicks& completion_time) = 0; |
}; |
// use Create() for construction, but anybody can delete at any time, |