| Index: chrome/browser/chromeos/login/session/chrome_session_manager.cc
|
| diff --git a/chrome/browser/chromeos/login/session/chrome_session_manager.cc b/chrome/browser/chromeos/login/session/chrome_session_manager.cc
|
| index a80cb802202f0b5f84ca393cca8e6312da0d5fb1..d04213568d6018645433d4bce5cf15f5fe2ee6dd 100644
|
| --- a/chrome/browser/chromeos/login/session/chrome_session_manager.cc
|
| +++ b/chrome/browser/chromeos/login/session/chrome_session_manager.cc
|
| @@ -23,6 +23,7 @@
|
| #include "chrome/browser/chromeos/login/session/user_session_manager.h"
|
| #include "chrome/browser/chromeos/login/wizard_controller.h"
|
| #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h"
|
| +#include "chrome/browser/chromeos/tether/tether_service.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/signin/signin_manager_factory.h"
|
| #include "chrome/browser/ui/ash/ash_util.h"
|
| @@ -109,6 +110,10 @@ void StartUserSession(Profile* user_profile, const std::string& login_user_id) {
|
|
|
| arc::ArcServiceLauncher::Get()->OnPrimaryUserProfilePrepared(user_profile);
|
|
|
| + TetherService* tether_service = TetherService::Get(user_profile);
|
| + if (tether_service)
|
| + tether_service->StartTetherIfEnabled();
|
| +
|
| // Send the PROFILE_PREPARED notification and call SessionStarted()
|
| // so that the Launcher and other Profile dependent classes are created.
|
| content::NotificationService::current()->Notify(
|
|
|