| Index: components/component_updater/component_patcher_operation.h
|
| diff --git a/components/component_updater/component_patcher_operation.h b/components/component_updater/component_patcher_operation.h
|
| index 023e4be1d3d223bdcd1d1886189bfcc2f65ceff7..4867ed7c7e170afd5b853f9bc79ce760f8246d36 100644
|
| --- a/components/component_updater/component_patcher_operation.h
|
| +++ b/components/component_updater/component_patcher_operation.h
|
| @@ -7,10 +7,10 @@
|
|
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/callback.h"
|
| #include "base/compiler_specific.h"
|
| #include "base/files/file_path.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "components/component_updater/component_unpacker.h"
|
|
|
| @@ -131,9 +131,9 @@ class OutOfProcessPatcher
|
| public:
|
| 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) = 0;
|
|
|
| protected:
|
|
|