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

Unified Diff: components/proximity_auth/logging/logging_unittest.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/proximity_auth/logging/logging_unittest.cc
diff --git a/components/proximity_auth/logging/logging_unittest.cc b/components/proximity_auth/logging/logging_unittest.cc
index ea40af1d43899644ea18e43f330e4625b5ee6e17..9efc5d7f7a5530fb2217d93d3e003b54dbaecf06 100644
--- a/components/proximity_auth/logging/logging_unittest.cc
+++ b/components/proximity_auth/logging/logging_unittest.cc
@@ -59,7 +59,7 @@ TEST_F(ProximityAuthLoggingTest, LogsSavedToBuffer) {
PA_LOG(WARNING) << kLog2;
PA_LOG(ERROR) << kLog3;
- auto logs = LogBuffer::GetInstance()->logs();
+ auto* logs = LogBuffer::GetInstance()->logs();
ASSERT_EQ(3u, logs->size());
auto iterator = logs->begin();

Powered by Google App Engine
This is Rietveld 408576698