| Index: chrome/browser/installable/installable_manager.cc
|
| diff --git a/chrome/browser/installable/installable_manager.cc b/chrome/browser/installable/installable_manager.cc
|
| index 1b9b10b3004bf11e970295a338066ea447db2c0f..765a7f47e5c3ebdbedee29489a8e074a96930120 100644
|
| --- a/chrome/browser/installable/installable_manager.cc
|
| +++ b/chrome/browser/installable/installable_manager.cc
|
| @@ -373,11 +373,11 @@ void InstallableManager::WorkOnTask() {
|
|
|
| if (!manifest_->fetched) {
|
| FetchManifest();
|
| - } else if (params.check_installable && !installable_->fetched) {
|
| - CheckInstallable();
|
| } else if (params.fetch_valid_primary_icon &&
|
| !IsIconFetched(ParamsForPrimaryIcon(params))) {
|
| CheckAndFetchBestIcon(ParamsForPrimaryIcon(params));
|
| + } else if (params.check_installable && !installable_->fetched) {
|
| + CheckInstallable();
|
| } else if (params.fetch_valid_badge_icon &&
|
| !IsIconFetched(ParamsForBadgeIcon(params))) {
|
| CheckAndFetchBestIcon(ParamsForBadgeIcon(params));
|
|
|