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

Unified Diff: base/time_win.cc

Issue 205003: Make int64 -> Time conversion explicit. (Closed)
Patch Set: Created 11 years, 3 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
« no previous file with comments | « base/time.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/time_win.cc
diff --git a/base/time_win.cc b/base/time_win.cc
index d0c970247893e86eb0cdf46ae87899fe101737a8..c134a9ebea9e23045e0974f36ca3c24abe92ef7d 100644
--- a/base/time_win.cc
+++ b/base/time_win.cc
@@ -189,7 +189,7 @@ Time Time::Now() {
continue;
}
- return Time(elapsed + initial_time);
+ return Time(elapsed + Time(initial_time));
}
}
« no previous file with comments | « base/time.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698