| Index: net/cookies/canonical_cookie.h
|
| diff --git a/net/cookies/canonical_cookie.h b/net/cookies/canonical_cookie.h
|
| index 88bc78879a742ff0dba89506f074cb5b3298bb2f..6c9a222805b47e435dc93f075756cc449920c5f4 100644
|
| --- a/net/cookies/canonical_cookie.h
|
| +++ b/net/cookies/canonical_cookie.h
|
| @@ -82,7 +82,7 @@ class NET_EXPORT CanonicalCookie {
|
| return !domain_.empty() && domain_[0] == '.'; }
|
| bool IsHostCookie() const { return !IsDomainCookie(); }
|
|
|
| - bool IsExpired(const base::Time& current) {
|
| + bool IsExpired(const base::Time& current) const {
|
| return !expiry_date_.is_null() && current >= expiry_date_;
|
| }
|
|
|
|
|