summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc')
-rw-r--r--chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc22
1 files changed, 8 insertions, 14 deletions
diff --git a/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc b/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
index dffbc15..cf35c04 100644
--- a/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
+++ b/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
@@ -268,14 +268,12 @@ void MobileSetupUIHTMLSource::StartDataRequest(
int render_process_id,
int render_frame_id,
const content::URLDataSource::GotDataCallback& callback) {
- NetworkHandler::Get()->network_configuration_handler()->GetProperties(
+ NetworkHandler::Get()->network_configuration_handler()->GetShillProperties(
path,
base::Bind(&MobileSetupUIHTMLSource::GetPropertiesAndStartDataRequest,
- weak_ptr_factory_.GetWeakPtr(),
- callback),
+ weak_ptr_factory_.GetWeakPtr(), callback),
base::Bind(&MobileSetupUIHTMLSource::GetPropertiesFailure,
- weak_ptr_factory_.GetWeakPtr(),
- callback, path));
+ weak_ptr_factory_.GetWeakPtr(), callback, path));
}
void MobileSetupUIHTMLSource::GetPropertiesAndStartDataRequest(
@@ -399,15 +397,12 @@ void MobileSetupHandler::OnActivationStateChanged(
return;
}
- NetworkHandler::Get()->network_configuration_handler()->GetProperties(
+ NetworkHandler::Get()->network_configuration_handler()->GetShillProperties(
network->path(),
base::Bind(&MobileSetupHandler::GetPropertiesAndCallStatusChanged,
- weak_ptr_factory_.GetWeakPtr(),
- state,
- error_description),
+ weak_ptr_factory_.GetWeakPtr(), state, error_description),
base::Bind(&MobileSetupHandler::GetPropertiesFailure,
- weak_ptr_factory_.GetWeakPtr(),
- network->path(),
+ weak_ptr_factory_.GetWeakPtr(), network->path(),
kJsDeviceStatusChangedCallback));
}
@@ -529,13 +524,12 @@ void MobileSetupHandler::HandleGetDeviceInfo(const base::ListValue* args) {
}
}
- NetworkHandler::Get()->network_configuration_handler()->GetProperties(
+ NetworkHandler::Get()->network_configuration_handler()->GetShillProperties(
network->path(),
base::Bind(&MobileSetupHandler::GetPropertiesAndCallGetDeviceInfo,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&MobileSetupHandler::GetPropertiesFailure,
- weak_ptr_factory_.GetWeakPtr(),
- network->path(),
+ weak_ptr_factory_.GetWeakPtr(), network->path(),
kJsGetDeviceInfoCallback));
}