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 cdc19ee7d9add07c09bc38fb83692d11846a4e24..bf71c3119c9c1238e454c41ade087a4febe4ce4a 100644 |
--- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc |
+++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc |
@@ -7,7 +7,7 @@ |
#include "ash/public/interfaces/constants.mojom.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/extensions/chrome_app_icon_loader.h" |
#include "chrome/browser/profiles/profile.h" |
#include "chrome/browser/ui/app_list/arc/arc_app_icon_loader.h" |
#include "chrome/browser/ui/ash/chrome_launcher_prefs.h" |
@@ -141,10 +141,10 @@ void ChromeLauncherController::AttachProfile(Profile* profile_to_attach) { |
// Since icon size changes are possible, the icon could be requested to be |
// reloaded. However - having it not multi profile aware would cause problems |
// if the icon cache gets deleted upon user switch. |
- std::unique_ptr<AppIconLoader> extension_app_icon_loader = |
- base::MakeUnique<extensions::ExtensionAppIconLoader>( |
+ std::unique_ptr<AppIconLoader> chrome_app_icon_loader = |
+ base::MakeUnique<extensions::ChromeAppIconLoader>( |
profile_, extension_misc::EXTENSION_ICON_SMALL, this); |
- app_icon_loaders_.push_back(std::move(extension_app_icon_loader)); |
+ app_icon_loaders_.push_back(std::move(chrome_app_icon_loader)); |
if (arc::IsArcAllowedForProfile(profile_)) { |
std::unique_ptr<AppIconLoader> arc_app_icon_loader = |