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

Unified Diff: ash/mus/network_connect_delegate_mus.cc

Issue 2434683003: Move NetworkStateNotifier and NetworkConnect from src/ui (Closed)
Patch Set: 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/mus/network_connect_delegate_mus.cc
diff --git a/ash/mus/network_connect_delegate_mus.cc b/ash/mus/network_connect_delegate_mus.cc
index 838fbeb32dbafef326a1e17c62407ad07929abb2..c80662b4878e17065ddede6a4260a960597a7602 100644
--- a/ash/mus/network_connect_delegate_mus.cc
+++ b/ash/mus/network_connect_delegate_mus.cc
@@ -43,5 +43,17 @@ void NetworkConnectDelegateMus::ShowMobileSetupDialog(
NOTIMPLEMENTED();
}
+void NetworkConnectDelegateMus::ShowNetworkConnectError(
+ const std::string& error_name,
+ const std::string& network_id) {
+ LOG(ERROR) << "Network Connect Error: " << error_name
James Cook 2016/10/20 00:11:43 Can you copy either the TODO or NOTIMPLEMENTED fro
stevenjb 2016/10/20 00:57:22 It's kind of implemented :) I'm not sure what the
+ << " For: " << network_id;
+}
+
+void NetworkConnectDelegateMus::ShowMobileActivationError(
+ const std::string& network_id) {
+ LOG(ERROR) << "Mobile Activation Error For: " << network_id;
+}
+
} // namespace mus
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698