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

Unified Diff: components/memory_coordinator/browser/memory_coordinator.cc

Issue 2110663002: components: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase+one fix Created 4 years, 5 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
Index: components/memory_coordinator/browser/memory_coordinator.cc
diff --git a/components/memory_coordinator/browser/memory_coordinator.cc b/components/memory_coordinator/browser/memory_coordinator.cc
index 101426f828009212bbe48d04334377d3dc63eeb0..634ebf809054e6098c15a500d690643f0cd4fccf 100644
--- a/components/memory_coordinator/browser/memory_coordinator.cc
+++ b/components/memory_coordinator/browser/memory_coordinator.cc
@@ -38,7 +38,7 @@ MemoryCoordinator::~MemoryCoordinator() {}
void MemoryCoordinator::CreateHandle(
int render_process_id,
mojom::MemoryCoordinatorHandleRequest request) {
- auto handle = new MemoryCoordinatorHandleImpl(std::move(request));
+ auto* handle = new MemoryCoordinatorHandleImpl(std::move(request));
handle->binding().set_connection_error_handler(
base::Bind(&MemoryCoordinator::OnConnectionError, base::Unretained(this),
render_process_id));
« no previous file with comments | « components/keyed_service/core/dependency_manager.cc ('k') | components/metrics/profiler/tracking_synchronizer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698