Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10316)

Unified Diff: chrome/installer/util/shell_util.cc

Issue 10643004: Merge 143290 - Replace all spaces by '_' in the AppUserModelId (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/win/win_util.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « base/win/win_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698