| Index: chrome/browser/ui/ash/launcher/chrome_launcher_controller_per_browser.cc
|
| diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_per_browser.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_per_browser.cc
|
| index 78c7d148ff1748103fcaf19f7a386f767e2339fd..b3ac41a768eafc36f2c78de52a5edf16c6f3cc7e 100644
|
| --- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_per_browser.cc
|
| +++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_per_browser.cc
|
| @@ -622,13 +622,6 @@ void ChromeLauncherControllerPerBrowser::SetAppImage(
|
| if (i->second->app_id() != id)
|
| continue;
|
|
|
| - // Panel items may share the same app_id as the app that created them,
|
| - // but they set their icon image in
|
| - // BrowserLauncherItemController::UpdateLauncher(), so do not set panel
|
| - // images here.
|
| - if (i->second->type() == LauncherItemController::TYPE_EXTENSION_PANEL)
|
| - continue;
|
| -
|
| int index = model_->ItemIndexByID(i->first);
|
| ash::LauncherItem item = model_->items()[index];
|
| item.image = image;
|
| @@ -1307,8 +1300,7 @@ ash::LauncherID ChromeLauncherControllerPerBrowser::InsertAppLauncherItem(
|
|
|
| model_->AddAt(index, item);
|
|
|
| - if (controller->type() != LauncherItemController::TYPE_EXTENSION_PANEL)
|
| - app_icon_loader_->FetchImage(app_id);
|
| + app_icon_loader_->FetchImage(app_id);
|
|
|
| return id;
|
| }
|
|
|