| Index: chrome/browser/android/shortcut_info.cc
|
| diff --git a/chrome/browser/android/shortcut_info.cc b/chrome/browser/android/shortcut_info.cc
|
| index 9371a8a0c79f12163ed9dff0760f5903d827a7e6..632eff1811fa837cd1386f8668bdecf58ef3fe51 100644
|
| --- a/chrome/browser/android/shortcut_info.cc
|
| +++ b/chrome/browser/android/shortcut_info.cc
|
| @@ -63,6 +63,11 @@ void ShortcutInfo::UpdateFromManifest(const content::Manifest& manifest) {
|
| // Set the background color based on the manifest value, if any.
|
| if (manifest.background_color != content::Manifest::kInvalidOrMissingColor)
|
| background_color = manifest.background_color;
|
| +
|
| + // Set the icon urls based on the icons in the manifest, if any.
|
| + icon_urls.clear();
|
| + for (const content::Manifest::Icon& icon : manifest.icons)
|
| + icon_urls.push_back(icon.src.spec());
|
| }
|
|
|
| void ShortcutInfo::UpdateSource(const Source new_source) {
|
|
|