Index: net/cookies/canonical_cookie.cc |
diff --git a/net/cookies/canonical_cookie.cc b/net/cookies/canonical_cookie.cc |
index de2fbbe6c65f03826722b05646936e95ad0ae536..bbabbb771a480977bb53e665d4a2824a1e33dc00 100644 |
--- a/net/cookies/canonical_cookie.cc |
+++ b/net/cookies/canonical_cookie.cc |
@@ -157,8 +157,7 @@ |
// Try the Expires attribute. |
if (pc.HasExpires() && !pc.Expires().empty()) { |
// Adjust for clock skew between server and host. |
- base::Time parsed_expiry = |
- cookie_util::ParseCookieExpirationTime(pc.Expires()); |
+ base::Time parsed_expiry = cookie_util::ParseCookieTime(pc.Expires()); |
if (!parsed_expiry.is_null()) |
return parsed_expiry + (current - server_time); |
} |