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

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

Issue 8176008: Merge 101684 - Added CopyRegKeyWorkItem in support of IE low rights policy fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/835/src/
Patch Set: Created 9 years, 2 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
===================================================================
--- chrome/installer/util/work_item.cc (revision 104337)
+++ chrome/installer/util/work_item.cc (working copy)
@@ -5,6 +5,7 @@
#include "chrome/installer/util/work_item.h"
#include "chrome/installer/util/conditional_work_item_list.h"
+#include "chrome/installer/util/copy_reg_key_work_item.h"
#include "chrome/installer/util/copy_tree_work_item.h"
#include "chrome/installer/util/create_dir_work_item.h"
#include "chrome/installer/util/create_reg_key_work_item.h"
@@ -22,6 +23,14 @@
WorkItem::~WorkItem() {
}
+CopyRegKeyWorkItem* WorkItem::CreateCopyRegKeyWorkItem(
+ HKEY predefined_root,
+ const std::wstring& source_key_path,
+ const std::wstring& dest_key_path) {
+ return new CopyRegKeyWorkItem(predefined_root, source_key_path,
+ dest_key_path);
+}
+
CopyTreeWorkItem* WorkItem::CreateCopyTreeWorkItem(
const FilePath& source_path,
const FilePath& dest_path,
« 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