Chromium Code Reviews| Index: net/cookies/canonical_cookie.h |
| diff --git a/net/cookies/canonical_cookie.h b/net/cookies/canonical_cookie.h |
| index a2b366ddd619724ffe63c3750db0077aeead6b00..6b08eda16fab6059ace23e056f1659ba6552f0f5 100644 |
| --- a/net/cookies/canonical_cookie.h |
| +++ b/net/cookies/canonical_cookie.h |
| @@ -144,6 +144,10 @@ class NET_EXPORT CanonicalCookie { |
| // FullCompare() are also sorted with respect to PartialCompare(). |
| bool FullCompare(const CanonicalCookie& other) const; |
| + // Return whether this object is a valid CanonicalCookie(). Invalid |
| + // cookies may be constructed by the detailed constructor. |
| + bool IsCanonical() const; |
|
mmenke
2017/05/26 17:02:17
We should DCHECK on this at the end of CanonicalCo
Randy Smith (Not in Mondays)
2017/06/07 23:31:40
DCHECK added. I agree that a fuzzer might be a wa
mmenke
2017/06/08 18:00:23
So I'm very shaky on the accuracy of this function
|
| + |
| private: |
| FRIEND_TEST_ALL_PREFIXES(CanonicalCookieTest, TestPrefixHistograms); |