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

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

Issue 2411223002: chromeos: Refactor system tray Wi-Fi connect dialog so it works with mash (Closed)
Patch Set: NON_EXPORTED_BASE Created 4 years, 2 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: ash/common/system/tray/system_tray_controller.cc
diff --git a/ash/common/system/tray/system_tray_controller.cc b/ash/common/system/tray/system_tray_controller.cc
index 7b9627711f5c9b5f0e56395776e171926d784a86..d233a4d87ac76682b64198e843cf5fb57158d72c 100644
--- a/ash/common/system/tray/system_tray_controller.cc
+++ b/ash/common/system/tray/system_tray_controller.cc
@@ -77,6 +77,11 @@ void SystemTrayController::ShowPublicAccountInfo() {
system_tray_client_->ShowPublicAccountInfo();
}
+void SystemTrayController::ShowNetworkConfigure(const std::string& network_id) {
+ if (ConnectToSystemTrayClient())
+ system_tray_client_->ShowNetworkConfigure(network_id);
+}
+
void SystemTrayController::ShowNetworkSettings(const std::string& network_id) {
if (ConnectToSystemTrayClient())
system_tray_client_->ShowNetworkSettings(network_id);

Powered by Google App Engine
This is Rietveld 408576698