Chromium Code Reviews| Index: chrome/browser/ui/webui/chromeos/mobile_setup_dialog.cc |
| diff --git a/chrome/browser/ui/webui/chromeos/mobile_setup_dialog.cc b/chrome/browser/ui/webui/chromeos/mobile_setup_dialog.cc |
| index 634679d1f52aa551e054bb91333b47d699baaca0..214eb299067b22748a425efed731aa780284aa64 100644 |
| --- a/chrome/browser/ui/webui/chromeos/mobile_setup_dialog.cc |
| +++ b/chrome/browser/ui/webui/chromeos/mobile_setup_dialog.cc |
| @@ -23,7 +23,6 @@ |
| #include "ui/views/widget/widget.h" |
| #include "ui/web_dialogs/web_dialog_delegate.h" |
| -using chromeos::CellularNetwork; |
| using chromeos::MobileActivator; |
| using content::BrowserThread; |
| using content::WebContents; |
| @@ -64,7 +63,7 @@ class MobileSetupDialogDelegate : public WebDialogDelegate, |
| // MobileActivator::Observer overrides. |
| virtual void OnActivationStateChanged( |
| - CellularNetwork* network, |
| + const chromeos::NetworkState* network, |
| MobileActivator::PlanActivationState state, |
| const std::string& error_description) OVERRIDE; |
| @@ -180,7 +179,7 @@ bool MobileSetupDialogDelegate::HandleContextMenu( |
| } |
| void MobileSetupDialogDelegate::OnActivationStateChanged( |
| - CellularNetwork* network, |
| + const chromeos::NetworkState* network, |
| MobileActivator::PlanActivationState state, |
| const std::string& error_description) { |
|
stevenjb
2013/08/14 02:28:31
Since this does nothing is there any point in impl
gauravsh
2013/08/14 21:42:29
Yeah, I am not sure why this was observing MobileA
|
| } |