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

Unified Diff: url/origin_unittest.cc

Issue 2105123002: various: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
« no previous file with comments | « ui/message_center/message_center_impl.cc ('k') | url/scheme_host_port_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: url/origin_unittest.cc
diff --git a/url/origin_unittest.cc b/url/origin_unittest.cc
index 6a3128b7be2a8a87d1b0a5a840a0671e4af725a7..74ffd3038db974d9d944c0bdd93e9525f2735dd1 100644
--- a/url/origin_unittest.cc
+++ b/url/origin_unittest.cc
@@ -27,7 +27,7 @@ TEST(OriginTest, UniqueOriginComparison) {
"yay",
"http::///invalid.example.com/"};
- for (const auto& test_url : urls) {
+ for (auto* test_url : urls) {
SCOPED_TRACE(test_url);
GURL url(test_url);
url::Origin origin(url);
« no previous file with comments | « ui/message_center/message_center_impl.cc ('k') | url/scheme_host_port_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698