| Index: components/update_client/action.cc
|
| diff --git a/components/update_client/action.cc b/components/update_client/action.cc
|
| index aa75f66cb4436bb99a6f52d827f6016271db3a73..438da26e96130d6cbc3487570f3e8f6d4c90c748 100644
|
| --- a/components/update_client/action.cc
|
| +++ b/components/update_client/action.cc
|
| @@ -102,7 +102,7 @@ size_t ActionImpl::ChangeAllItemsState(CrxUpdateItem::State from,
|
| CrxUpdateItem::State to) {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| size_t count = 0;
|
| - for (auto item : update_context_->update_items) {
|
| + for (auto* item : update_context_->update_items) {
|
| if (item->state == from) {
|
| ChangeItemState(item, to);
|
| ++count;
|
|
|