| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/component_updater/component_patcher_operation.h" | 5 #include "chrome/browser/component_updater/component_patcher_operation.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 int* error) { | 216 int* error) { |
| 217 *error = 0; | 217 *error = 0; |
| 218 return patcher->Patch(ComponentPatcher::kPatchTypeCourgette, | 218 return patcher->Patch(ComponentPatcher::kPatchTypeCourgette, |
| 219 input_abs_path_, | 219 input_abs_path_, |
| 220 patch_abs_path_, | 220 patch_abs_path_, |
| 221 output_abs_path_, | 221 output_abs_path_, |
| 222 error); | 222 error); |
| 223 } | 223 } |
| 224 | 224 |
| 225 } // namespace component_updater | 225 } // namespace component_updater |
| 226 | |
| OLD | NEW |