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

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

Issue 7976045: Fix in-use updates for Chrome Frame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Hey, it compiles! 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
Index: chrome/installer/util/work_item_list.cc
diff --git a/chrome/installer/util/work_item_list.cc b/chrome/installer/util/work_item_list.cc
index 23ef381a5cf19851b48e0df9e8b37cff5338c133..f9808c0c511c319b8a678cfdd80a90a1310207be 100644
--- a/chrome/installer/util/work_item_list.cc
+++ b/chrome/installer/util/work_item_list.cc
@@ -76,9 +76,10 @@ void WorkItemList::AddWorkItem(WorkItem* work_item) {
WorkItem* WorkItemList::AddCopyRegKeyWorkItem(
HKEY predefined_root,
const std::wstring& source_key_path,
- const std::wstring& dest_key_path) {
+ const std::wstring& dest_key_path,
+ CopyOverWriteOption overwrite_option) {
WorkItem* item = WorkItem::CreateCopyRegKeyWorkItem(
- predefined_root, source_key_path, dest_key_path);
+ predefined_root, source_key_path, dest_key_path, overwrite_option);
AddWorkItem(item);
return item;
}

Powered by Google App Engine
This is Rietveld 408576698