| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_PROC
ESS_H_ | 5 #ifndef CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_PROC
ESS_H_ |
| 6 #define CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_PROC
ESS_H_ | 6 #define CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_PROC
ESS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "chrome/common/file_patcher.mojom.h" | |
| 14 #include "components/update_client/component_patcher_operation.h" | 13 #include "components/update_client/component_patcher_operation.h" |
| 15 #include "content/public/browser/utility_process_mojo_client.h" | |
| 16 | 14 |
| 17 namespace base { | 15 namespace base { |
| 18 class FilePath; | 16 class FilePath; |
| 19 class SequencedTaskRunner; | 17 class SequencedTaskRunner; |
| 20 } // namespace base | 18 } // namespace base |
| 21 | 19 |
| 22 namespace component_updater { | 20 namespace component_updater { |
| 23 | 21 |
| 22 class PatchHost; |
| 23 |
| 24 // Implements the DeltaUpdateOpPatch out-of-process patching. |
| 24 class ChromeOutOfProcessPatcher : public update_client::OutOfProcessPatcher { | 25 class ChromeOutOfProcessPatcher : public update_client::OutOfProcessPatcher { |
| 25 public: | 26 public: |
| 26 ChromeOutOfProcessPatcher(); | 27 ChromeOutOfProcessPatcher(); |
| 27 | 28 |
| 28 // update_client::OutOfProcessPatcher: | 29 // DeltaUpdateOpPatch::OutOfProcessPatcher implementation. |
| 29 void Patch(const std::string& operation, | 30 void Patch(const std::string& operation, |
| 30 scoped_refptr<base::SequencedTaskRunner> task_runner, | 31 scoped_refptr<base::SequencedTaskRunner> task_runner, |
| 31 const base::FilePath& input_abs_path, | 32 const base::FilePath& input_abs_path, |
| 32 const base::FilePath& patch_abs_path, | 33 const base::FilePath& patch_abs_path, |
| 33 const base::FilePath& output_abs_path, | 34 const base::FilePath& output_abs_path, |
| 34 base::Callback<void(int result)> callback) override; | 35 base::Callback<void(int result)> callback) override; |
| 35 | 36 |
| 36 private: | 37 private: |
| 37 ~ChromeOutOfProcessPatcher() override; | 38 ~ChromeOutOfProcessPatcher() override; |
| 38 | 39 |
| 39 // Patch() request operation result. | 40 scoped_refptr<PatchHost> host_; |
| 40 void PatchDone(int result); | |
| 41 | |
| 42 // Used to signal the operation result back to the Patch() requester. | |
| 43 scoped_refptr<base::SequencedTaskRunner> task_runner_; | |
| 44 base::Callback<void(int result)> callback_; | |
| 45 | |
| 46 // Utility process used for out-of-process file patching. | |
| 47 std::unique_ptr<content::UtilityProcessMojoClient<chrome::mojom::FilePatcher>> | |
| 48 utility_process_mojo_client_; | |
| 49 | 41 |
| 50 DISALLOW_COPY_AND_ASSIGN(ChromeOutOfProcessPatcher); | 42 DISALLOW_COPY_AND_ASSIGN(ChromeOutOfProcessPatcher); |
| 51 }; | 43 }; |
| 52 | 44 |
| 53 } // namespace component_updater | 45 } // namespace component_updater |
| 54 | 46 |
| 55 #endif // CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_P
ROCESS_H_ | 47 #endif // CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_OUT_OF_P
ROCESS_H_ |
| OLD | NEW |