| Index: chrome/browser/chromeos/login/app_launch_controller.cc
|
| diff --git a/chrome/browser/chromeos/login/app_launch_controller.cc b/chrome/browser/chromeos/login/app_launch_controller.cc
|
| index 3408b5c20c5c3fa6a8efa3ae002bdc57686a4e1e..99b78733a65350affecfde2046157e76a1f3df81 100644
|
| --- a/chrome/browser/chromeos/login/app_launch_controller.cc
|
| +++ b/chrome/browser/chromeos/login/app_launch_controller.cc
|
| @@ -31,6 +31,7 @@
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/webui/chromeos/login/app_launch_splash_screen_handler.h"
|
| #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h"
|
| +#include "components/user_manager/user_manager.h"
|
| #include "content/public/browser/notification_service.h"
|
| #include "net/base/network_change_notifier.h"
|
|
|
| @@ -296,7 +297,7 @@ bool AppLaunchController::CanConfigureNetwork() {
|
| return true;
|
| }
|
|
|
| - return !UserManager::Get()->GetOwnerEmail().empty();
|
| + return !user_manager::UserManager::Get()->GetOwnerEmail().empty();
|
| }
|
|
|
| bool AppLaunchController::NeedOwnerAuthToConfigureNetwork() {
|
|
|