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

Unified Diff: ash/common/system/tray/system_tray_notifier.cc

Issue 2698473007: Convert path usage in NetworkListViewBase subclasses to use guids. (Closed)
Patch Set: Tweak NetworkPortalNotificationControllerTest to create GUIDs for new NetworkStates. Created 3 years, 10 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 | « ash/common/system/tray/system_tray_notifier.h ('k') | ash/mus/system_tray_delegate_mus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/tray/system_tray_notifier.cc
diff --git a/ash/common/system/tray/system_tray_notifier.cc b/ash/common/system/tray/system_tray_notifier.cc
index a318d199108a45d097810a0be275cbaee06300f8..bfff62a7b00db2e8a51215ac834e2fdd5e2067ed 100644
--- a/ash/common/system/tray/system_tray_notifier.cc
+++ b/ash/common/system/tray/system_tray_notifier.cc
@@ -181,9 +181,9 @@ void SystemTrayNotifier::RemoveNetworkPortalDetectorObserver(
}
void SystemTrayNotifier::NotifyOnCaptivePortalDetected(
- const std::string& service_path) {
+ const std::string& guid) {
for (auto& observer : network_portal_detector_observers_)
- observer.OnCaptivePortalDetected(service_path);
+ observer.OnCaptivePortalDetected(guid);
}
void SystemTrayNotifier::AddScreenCaptureObserver(
« no previous file with comments | « ash/common/system/tray/system_tray_notifier.h ('k') | ash/mus/system_tray_delegate_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698