| Index: net/cookies/cookie_monster.cc
|
| diff --git a/net/cookies/cookie_monster.cc b/net/cookies/cookie_monster.cc
|
| index b656d83e6c078a0594dfd3c0f76d87ca0ea78488..25a84d02f24b15c590a98942302f996b8614d481 100644
|
| --- a/net/cookies/cookie_monster.cc
|
| +++ b/net/cookies/cookie_monster.cc
|
| @@ -1653,8 +1653,8 @@ bool CookieMonster::DeleteAnyEquivalentCookie(const std::string& key,
|
| // overwrite each other, unless secure cookies require secure scheme is
|
| // being enforced. In that case, cookies with different paths might exist
|
| // and be considered equivalent.
|
| - CHECK(!found_equivalent_cookie)
|
| - << "Duplicate equivalent cookies found, cookie store is corrupted.";
|
| + // Duplicate equivalent cookies found, cookie store is corrupted.
|
| + CHECK(!found_equivalent_cookie);
|
| if (skip_httponly && cc->IsHttpOnly()) {
|
| skipped_httponly = true;
|
| } else {
|
|
|