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

Unified Diff: chrome/browser/ui/webui/chromeos/mobile_setup_dialog.cc

Issue 22611005: Switch over MobileActivator to use Network*Handler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add activation handler files Created 7 years, 4 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: 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
}

Powered by Google App Engine
This is Rietveld 408576698