| Index: chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
|
| diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
|
| index 5a9ada19823991b1c134706223d800eab31f20d6..3d6e000ae81d913d808769a7536ce0183311831f 100644
|
| --- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
|
| +++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h"
|
|
|
| #include "base/memory/ptr_util.h"
|
| +#include "chrome/browser/chromeos/arc/arc_util.h"
|
| #include "chrome/browser/extensions/extension_app_icon_loader.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/app_list/arc/arc_app_icon_loader.h"
|
| @@ -142,7 +143,7 @@ void ChromeLauncherController::AttachProfile(Profile* profile_to_attach) {
|
| profile_, extension_misc::EXTENSION_ICON_SMALL, this);
|
| app_icon_loaders_.push_back(std::move(extension_app_icon_loader));
|
|
|
| - if (arc::ArcSessionManager::IsAllowedForProfile(profile_)) {
|
| + if (arc::util::IsArcAllowedForProfile(profile_)) {
|
| std::unique_ptr<AppIconLoader> arc_app_icon_loader =
|
| base::MakeUnique<ArcAppIconLoader>(
|
| profile_, extension_misc::EXTENSION_ICON_SMALL, this);
|
|
|