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