Index: chrome/installer/util/shell_util.cc |
diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc |
index f8022f0f3c10246bfc815bd4fd84bc7998bf5eaf..a2169b8ca0a670e86b03c40f0f79b525ee20ba25 100644 |
--- a/chrome/installer/util/shell_util.cc |
+++ b/chrome/installer/util/shell_util.cc |
@@ -774,7 +774,8 @@ bool ShellUtil::UpdateChromeShortcut(const std::wstring& chrome_exe, |
NULL, // arguments |
description.c_str(), // description |
chrome_exe.c_str(), // icon file |
- icon_index); // icon index |
+ icon_index, // icon index |
+ chrome::kBrowserAppId); // app id |
} else { |
return file_util::UpdateShortcutLink(chrome_exe.c_str(), // target |
shortcut.c_str(), // shortcut |
@@ -782,6 +783,7 @@ bool ShellUtil::UpdateChromeShortcut(const std::wstring& chrome_exe, |
NULL, // arguments |
description.c_str(), // description |
chrome_exe.c_str(), // icon file |
- 0); // icon index |
+ 0, // icon index |
+ chrome::kBrowserAppId); // app id |
} |
} |