| 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 {
|
|
|