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

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

Issue 7976045: Fix in-use updates for Chrome Frame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sanity check before dcommit Created 9 years, 3 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 | « chrome/installer/util/work_item.h ('k') | chrome/installer/util/work_item_list.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/work_item.cc
diff --git a/chrome/installer/util/work_item.cc b/chrome/installer/util/work_item.cc
index e4982f86326b6d466eec2012172fa5fb6ec61d77..8b7bb11f8a24b073f660c7caf551d255f9cc808a 100644
--- a/chrome/installer/util/work_item.cc
+++ b/chrome/installer/util/work_item.cc
@@ -26,9 +26,10 @@ WorkItem::~WorkItem() {
CopyRegKeyWorkItem* WorkItem::CreateCopyRegKeyWorkItem(
HKEY predefined_root,
const std::wstring& source_key_path,
- const std::wstring& dest_key_path) {
+ const std::wstring& dest_key_path,
+ CopyOverWriteOption overwrite_option) {
return new CopyRegKeyWorkItem(predefined_root, source_key_path,
- dest_key_path);
+ dest_key_path, overwrite_option);
}
CopyTreeWorkItem* WorkItem::CreateCopyTreeWorkItem(
« no previous file with comments | « chrome/installer/util/work_item.h ('k') | chrome/installer/util/work_item_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698