| Index: chrome/browser/component_updater/component_patcher_operation_out_of_process.h
|
| diff --git a/chrome/browser/component_updater/component_patcher_operation_out_of_process.h b/chrome/browser/component_updater/component_patcher_operation_out_of_process.h
|
| index 7c61404333f66c08e69534015ab45af90e0a5408..0f6d6b5f5363382cbbbaa7f0a2d959adead51349 100644
|
| --- a/chrome/browser/component_updater/component_patcher_operation_out_of_process.h
|
| +++ b/chrome/browser/component_updater/component_patcher_operation_out_of_process.h
|
| @@ -7,10 +7,16 @@
|
|
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/callback_forward.h"
|
| +#include "base/macros.h"
|
| +#include "base/memory/ref_counted.h"
|
| #include "components/component_updater/component_patcher_operation.h"
|
|
|
| +namespace base {
|
| +class FilePath;
|
| +class SequencedTaskRunner;
|
| +} // namespace base
|
| +
|
| namespace component_updater {
|
|
|
| class PatchHost;
|
| @@ -23,9 +29,9 @@ class ChromeOutOfProcessPatcher : public OutOfProcessPatcher {
|
| // DeltaUpdateOpPatch::OutOfProcessPatcher implementation.
|
| virtual void Patch(const std::string& operation,
|
| scoped_refptr<base::SequencedTaskRunner> task_runner,
|
| - base::FilePath& input_abs_path,
|
| - base::FilePath& patch_abs_path,
|
| - base::FilePath& output_abs_path,
|
| + const base::FilePath& input_abs_path,
|
| + const base::FilePath& patch_abs_path,
|
| + const base::FilePath& output_abs_path,
|
| base::Callback<void(int result)> callback) OVERRIDE;
|
|
|
| private:
|
|
|