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

Unified Diff: chrome/browser/component_updater/component_patcher_operation_out_of_process.cc

Issue 808773005: Move most of the component updater artifacts to update_client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/browser/component_updater/component_patcher_operation_out_of_process.cc
diff --git a/chrome/browser/component_updater/component_patcher_operation_out_of_process.cc b/chrome/browser/component_updater/component_patcher_operation_out_of_process.cc
index 12d1ed42bd7e6da7908f569eb6bc77f5461bb4eb..4242a4853c0eca9b189891f812c06731f3469632 100644
--- a/chrome/browser/component_updater/component_patcher_operation_out_of_process.cc
+++ b/chrome/browser/component_updater/component_patcher_operation_out_of_process.cc
@@ -96,10 +96,10 @@ void ChromeOutOfProcessPatcher::Patch(
base::Callback<void(int result)> callback) {
host_ = new PatchHost(callback, task_runner);
scoped_ptr<IPC::Message> patch_message;
- if (operation == kBsdiff) {
+ if (operation == update_client::kBsdiff) {
patch_message.reset(new ChromeUtilityMsg_PatchFileBsdiff(
input_abs_path, patch_abs_path, output_abs_path));
- } else if (operation == kCourgette) {
+ } else if (operation == update_client::kCourgette) {
patch_message.reset(new ChromeUtilityMsg_PatchFileCourgette(
input_abs_path, patch_abs_path, output_abs_path));
} else {

Powered by Google App Engine
This is Rietveld 408576698