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 6f019a521ff25c947facc8c9ec9ff561df46eef1..1c7304a168040e47c13baa315b2e637767a504dc 100644 |
--- a/chrome/browser/chromeos/mobile/mobile_activator.cc |
+++ b/chrome/browser/chromeos/mobile/mobile_activator.cc |
@@ -8,7 +8,6 @@ |
#include <map> |
#include <string> |
-#include "ash/system/chromeos/network/network_connect.h" |
#include "base/bind.h" |
#include "base/bind_helpers.h" |
#include "base/files/file_util.h" |
@@ -37,6 +36,7 @@ |
#include "chromeos/network/network_state_handler.h" |
#include "content/public/browser/browser_thread.h" |
#include "third_party/cros_system_api/dbus/service_constants.h" |
+#include "ui/chromeos/network/network_connect.h" |
using content::BrowserThread; |
@@ -624,7 +624,7 @@ void MobileActivator::ContinueConnecting() { |
LOG(WARNING) << "Connect failed, will try again in a little bit."; |
if (network) { |
VLOG(1) << "Connecting to: " << network->path(); |
- ash::NetworkConnect::Get()->ConnectToNetwork(network->path()); |
+ ui::NetworkConnect::Get()->ConnectToNetwork(network->path()); |
} |
} |
} |