| Index: components/crash/content/browser/crash_dump_observer_android.cc
|
| diff --git a/components/crash/content/browser/crash_dump_observer_android.cc b/components/crash/content/browser/crash_dump_observer_android.cc
|
| index 9b574e41f5a148fab0bbe7ccec7c5cfd3a4034d6..bc5449f45df7b8706a8073a56bd66bec16fc79e0 100644
|
| --- a/components/crash/content/browser/crash_dump_observer_android.cc
|
| +++ b/components/crash/content/browser/crash_dump_observer_android.cc
|
| @@ -75,7 +75,7 @@ void CrashDumpObserver::OnChildExit(int child_process_id,
|
| for (auto& client : registered_clients_)
|
| registered_clients_copy.push_back(client.get());
|
| }
|
| - for (auto& client : registered_clients_copy) {
|
| + for (auto* client : registered_clients_copy) {
|
| client->OnChildExit(child_process_id, pid, process_type, termination_status,
|
| app_state);
|
| }
|
| @@ -91,7 +91,7 @@ void CrashDumpObserver::BrowserChildProcessStarted(
|
| for (auto& client : registered_clients_)
|
| registered_clients_copy.push_back(client.get());
|
| }
|
| - for (auto& client : registered_clients_copy) {
|
| + for (auto* client : registered_clients_copy) {
|
| client->OnChildStart(child_process_id, mappings);
|
| }
|
| }
|
|
|