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

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

Issue 5429002: Support for checking multiple keyfiles when removing an installation package.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years 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 | « chrome/installer/setup/install.cc ('k') | chrome/installer/util/browser_distribution.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/setup/setup_main.cc
===================================================================
--- chrome/installer/setup/setup_main.cc (revision 67902)
+++ chrome/installer/setup/setup_main.cc (working copy)
@@ -126,7 +126,7 @@
installer_util::kChromeNewExe));
scoped_ptr<WorkItemList> install_list(WorkItem::CreateWorkItemList());
- install_list->AddDeleteTreeWorkItem(chrome_old_exe.value(), std::wstring());
+ install_list->AddDeleteTreeWorkItem(chrome_old_exe);
FilePath temp_path;
if (!file_util::CreateNewTempDirectory(L"chrome_", &temp_path)) {
LOG(ERROR) << "Failed to create Temp directory " << temp_path.value();
@@ -138,7 +138,7 @@
temp_path.ToWStringHack(),
WorkItem::IF_DIFFERENT,
std::wstring());
- install_list->AddDeleteTreeWorkItem(chrome_new_exe.value(), std::wstring());
+ install_list->AddDeleteTreeWorkItem(chrome_new_exe);
HKEY reg_root = installation.system_level() ? HKEY_LOCAL_MACHINE :
HKEY_CURRENT_USER;
« no previous file with comments | « chrome/installer/setup/install.cc ('k') | chrome/installer/util/browser_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698