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

Unified Diff: components/wifi_sync/wifi_config_delegate_chromeos.cc

Issue 1779633002: Invoke createNetwork() callback with GUID, not service name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix more trybot failures Created 4 years, 9 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: components/wifi_sync/wifi_config_delegate_chromeos.cc
diff --git a/components/wifi_sync/wifi_config_delegate_chromeos.cc b/components/wifi_sync/wifi_config_delegate_chromeos.cc
index d8d241fc17c885c947fd48ec79e117dfed44c05a..780dd1e04baaf6e0ad8375f0f02e9dda10f53ca6 100644
--- a/components/wifi_sync/wifi_config_delegate_chromeos.cc
+++ b/components/wifi_sync/wifi_config_delegate_chromeos.cc
@@ -50,12 +50,10 @@ void WifiConfigDelegateChromeOs::AddToLocalNetworks(
return;
}
- managed_network_configuration_handler_
- ->CreateConfiguration(
- user_hash_,
- *onc_properties,
- chromeos::network_handler::StringResultCallback(),
- base::Bind(OnCreateConfigurationFailed, network_credential));
+ managed_network_configuration_handler_->CreateConfiguration(
+ user_hash_, *onc_properties,
+ chromeos::network_handler::ServiceResultCallback(),
+ base::Bind(OnCreateConfigurationFailed, network_credential));
}
} // namespace wifi_sync
« no previous file with comments | « chromeos/network/network_handler_callbacks.h ('k') | components/wifi_sync/wifi_config_delegate_chromeos_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698