| Index: net/cookies/cookie_monster.cc
|
| diff --git a/net/cookies/cookie_monster.cc b/net/cookies/cookie_monster.cc
|
| index 59a9924bcff1b2be713555181f2fcad27520dfe5..2272d7b08ab49ca58e9ce4024cd2ebb369efdc07 100644
|
| --- a/net/cookies/cookie_monster.cc
|
| +++ b/net/cookies/cookie_monster.cc
|
| @@ -1099,7 +1099,7 @@ CookieList CookieMonster::GetAllCookies() {
|
|
|
| CookieList cookie_list;
|
| cookie_list.reserve(cookie_ptrs.size());
|
| - for (const auto& cookie_ptr : cookie_ptrs)
|
| + for (auto* cookie_ptr : cookie_ptrs)
|
| cookie_list.push_back(*cookie_ptr);
|
|
|
| return cookie_list;
|
|
|