| Index: base/time/time_mac.cc
|
| diff --git a/base/time/time_mac.cc b/base/time/time_mac.cc
|
| index 285e95a4e99c5530ea34c63091b50c4588064d9b..f0c780449b7b23ae89fbd1cad7d86b3905f88a18 100644
|
| --- a/base/time/time_mac.cc
|
| +++ b/base/time/time_mac.cc
|
| @@ -181,8 +181,6 @@ Time Time::FromExploded(bool is_local, const Exploded& exploded) {
|
| gregorian, &absolute_time, "yMdHmsS", exploded.year, exploded.month,
|
| exploded.day_of_month, exploded.hour, exploded.minute, exploded.second,
|
| exploded.millisecond);
|
| - // Milliseconds from |exploded| is added back to |absolute_time| here
|
| - // because CFCalendar parameters are integer values.
|
| CFAbsoluteTime seconds = absolute_time + kCFAbsoluteTimeIntervalSince1970;
|
| return Time(static_cast<int64_t>(seconds * kMicrosecondsPerSecond) +
|
| kWindowsEpochDeltaMicroseconds);
|
|
|