Chromium Code Reviews| Index: chrome/installer/util/shell_util.cc |
| =================================================================== |
| --- chrome/installer/util/shell_util.cc (revision 143429) |
| +++ chrome/installer/util/shell_util.cc (working copy) |
| @@ -1130,6 +1130,8 @@ |
| app_id.append(component); |
| } |
| } |
| + // No spaces are allowed in the AppUserModelId according to MSDN. |
| + ReplaceChars(app_id, L" ", L"_", &app_id); |
| return app_id; |
| } |