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

Unified Diff: net/url_request/url_request.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: net/url_request/url_request.h
===================================================================
--- net/url_request/url_request.h (revision 3954)
+++ net/url_request/url_request.h (working copy)
@@ -286,13 +286,13 @@
// The time at which the returned response was requested. For cached
// responses, this may be a time well in the past.
- const Time& request_time() const {
+ const base::Time& request_time() const {
return response_info_.request_time;
}
// The time at which the returned response was generated. For cached
// responses, this may be a time well in the past.
- const Time& response_time() const {
+ const base::Time& response_time() const {
return response_info_.response_time;
}

Powered by Google App Engine
This is Rietveld 408576698