Chromium Code Reviews| 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 |