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

Unified Diff: chrome/browser/chromeos/settings/device_settings_provider_unittest.cc

Issue 2172023002: chrome/browser/chromeos: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « chrome/browser/chromeos/resource_reporter/resource_reporter_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/settings/device_settings_provider_unittest.cc
diff --git a/chrome/browser/chromeos/settings/device_settings_provider_unittest.cc b/chrome/browser/chromeos/settings/device_settings_provider_unittest.cc
index c42e008bb18e3f9617f0536ad08067d3a6b8f1fd..1a13aa9c43ecab6182f5bf0e01c338c85d2640e9 100644
--- a/chrome/browser/chromeos/settings/device_settings_provider_unittest.cc
+++ b/chrome/browser/chromeos/settings/device_settings_provider_unittest.cc
@@ -159,7 +159,7 @@ class DeviceSettingsProviderTest : public DeviceSettingsTestBase {
};
const base::FundamentalValue expected_enable_value(expected_enable_state);
- for (const auto& setting : reporting_settings) {
+ for (auto* setting : reporting_settings) {
EXPECT_TRUE(base::Value::Equals(provider_->Get(setting),
&expected_enable_value))
<< "Value for " << setting << " does not match expected";
« no previous file with comments | « chrome/browser/chromeos/resource_reporter/resource_reporter_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698