Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: components/crash/content/browser/crash_dump_observer_android.cc

Issue 2721553004: Remove auto raw pointer deduction from non-linux specific code. (Closed)
Patch Set: rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/network/geolocation_handler.cc ('k') | components/crash/core/common/objc_zombie.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
}
« no previous file with comments | « chromeos/network/geolocation_handler.cc ('k') | components/crash/core/common/objc_zombie.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698