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

Unified Diff: chrome/installer/setup/uninstall.cc

Issue 6538025: Temp dir cleanup:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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
Index: chrome/installer/setup/uninstall.cc
===================================================================
--- chrome/installer/setup/uninstall.cc (revision 75264)
+++ chrome/installer/setup/uninstall.cc (working copy)
@@ -690,8 +690,8 @@
if (product_state != NULL) {
std::vector<FilePath> com_dll_list;
product.AddComDllList(&com_dll_list);
- FilePath dll_folder = installer_state.target_path().Append(
- UTF8ToWide(product_state->version().GetString()));
+ FilePath dll_folder = installer_state.target_path().AppendASCII(
+ product_state->version().GetString());
scoped_ptr<WorkItemList> unreg_work_item_list(
WorkItem::CreateWorkItemList());

Powered by Google App Engine
This is Rietveld 408576698