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

Unified Diff: components/metrics/net/wifi_access_point_info_provider_chromeos.cc

Issue 819583004: Elim device log spam when translating ONC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_portal_detect_shutdown_crash
Patch Set: Rebase Created 5 years, 11 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/shill_property_util.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/net/wifi_access_point_info_provider_chromeos.cc
diff --git a/components/metrics/net/wifi_access_point_info_provider_chromeos.cc b/components/metrics/net/wifi_access_point_info_provider_chromeos.cc
index 314ddc546a414860e282aee158a91012e111fd18..cb0adf115c363ab430e997dcf704a0d4f5b44b2b 100644
--- a/components/metrics/net/wifi_access_point_info_provider_chromeos.cc
+++ b/components/metrics/net/wifi_access_point_info_provider_chromeos.cc
@@ -62,8 +62,8 @@ void WifiAccessPointInfoProviderChromeos::ParseInfo(
const std::string &service_path,
const base::DictionaryValue& properties) {
// Skip services that contain "_nomap" in the SSID.
- std::string ssid =
- chromeos::shill_property_util::GetSSIDFromProperties(properties, NULL);
+ std::string ssid = chromeos::shill_property_util::GetSSIDFromProperties(
+ properties, false /* verbose_logging */, nullptr);
if (ssid.find("_nomap", 0) != std::string::npos)
return;
« no previous file with comments | « chromeos/network/shill_property_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698