| Index: net/cookies/cookie_monster.cc
|
| diff --git a/net/cookies/cookie_monster.cc b/net/cookies/cookie_monster.cc
|
| index e295d39f3dfb07725931912082c7ba5a32a7204a..684a9653a1c00ab724a4e47cc4cc521b0ec4f08e 100644
|
| --- a/net/cookies/cookie_monster.cc
|
| +++ b/net/cookies/cookie_monster.cc
|
| @@ -1223,7 +1223,7 @@ void CookieMonster::DeleteCookie(const GURL& url,
|
| FindCookiesForHostAndDomain(url, options, &cookies);
|
| std::set<CanonicalCookie*> matching_cookies;
|
|
|
| - for (const auto& cookie : cookies) {
|
| + for (auto* cookie : cookies) {
|
| if (cookie->Name() != cookie_name)
|
| continue;
|
| if (!cookie->IsOnPath(url.path()))
|
|
|