Index: chrome/browser/chromeos/mobile/mobile_activator.cc |
diff --git a/chrome/browser/chromeos/mobile/mobile_activator.cc b/chrome/browser/chromeos/mobile/mobile_activator.cc |
index 2c42584047962d0ec4f8a2de8c2026fafcf8a7d9..a7acedeb409f1ed1656c2f9a92120c342b76794b 100644 |
--- a/chrome/browser/chromeos/mobile/mobile_activator.cc |
+++ b/chrome/browser/chromeos/mobile/mobile_activator.cc |
@@ -8,6 +8,7 @@ |
#include <map> |
#include <string> |
+#include "ash/system/chromeos/network/network_connect.h" |
#include "base/bind.h" |
#include "base/bind_helpers.h" |
#include "base/file_util.h" |
@@ -515,7 +516,7 @@ void MobileActivator::ContinueConnecting() { |
LOG(WARNING) << "Connect failed, will try again in a little bit."; |
if (network) { |
LOG(INFO) << "Connecting to: " << network->service_path(); |
- GetNetworkLibrary()->ConnectToCellularNetwork(network); |
+ ash::network_connect::ConnectToNetwork(network->service_path(), NULL); |
pneubeck (no reviews)
2013/08/06 15:45:19
nit: NULL /* no parent window */
stevenjb
2013/08/06 20:23:55
Done.
|
} |
} |
} |