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

Unified Diff: webkit/glue/resource_loader_bridge.h

Issue 7995: Move Time, TimeDelta and TimeTicks into namespace base. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 2 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.h
===================================================================
--- webkit/glue/resource_loader_bridge.h (revision 3954)
+++ webkit/glue/resource_loader_bridge.h (working copy)
@@ -36,11 +36,11 @@
struct ResponseInfo {
// The time at which the request was made that resulted in this response.
// For cached responses, this time could be "far" in the past.
- Time request_time;
+ base::Time request_time;
// The time at which the response headers were received. For cached
// responses, this time could be "far" in the past.
- Time response_time;
+ base::Time response_time;
// The response headers or NULL if the URL type does not support headers.
scoped_refptr<net::HttpResponseHeaders> headers;

Powered by Google App Engine
This is Rietveld 408576698