| 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 #include "chrome/browser/component_updater/component_patcher_operation_out_of_pr
ocess.h" | 5 #include "chrome/browser/component_updater/component_patcher_operation_out_of_pr
ocess.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/location.h" | 12 #include "base/location.h" |
| 13 #include "base/single_thread_task_runner.h" | 13 #include "base/single_thread_task_runner.h" |
| 14 #include "base/thread_task_runner_handle.h" | 14 #include "base/thread_task_runner_handle.h" |
| 15 #include "chrome/common/chrome_utility_messages.h" | 15 #include "chrome/common/chrome_utility_messages.h" |
| 16 #include "chrome/grit/generated_resources.h" | 16 #include "chrome/grit/generated_resources.h" |
| 17 #include "components/component_updater/component_updater_service.h" | 17 #include "components/component_updater/component_updater_service.h" |
| 18 #include "content/public/browser/browser_thread.h" | 18 #include "content/public/browser/browser_thread.h" |
| 19 #include "content/public/browser/utility_process_host.h" | 19 #include "content/public/browser/utility_process_host.h" |
| 20 #include "content/public/browser/utility_process_host_client.h" | 20 #include "content/public/browser/utility_process_host_client.h" |
| 21 #include "courgette/courgette.h" | 21 #include "courgette/courgette.h" |
| 22 #include "courgette/third_party/bsdiff.h" | 22 #include "courgette/third_party/bsdiff/bsdiff.h" |
| 23 #include "ipc/ipc_message_macros.h" | 23 #include "ipc/ipc_message_macros.h" |
| 24 #include "ui/base/l10n/l10n_util.h" | 24 #include "ui/base/l10n/l10n_util.h" |
| 25 | 25 |
| 26 namespace component_updater { | 26 namespace component_updater { |
| 27 | 27 |
| 28 class PatchHost : public content::UtilityProcessHostClient { | 28 class PatchHost : public content::UtilityProcessHostClient { |
| 29 public: | 29 public: |
| 30 PatchHost(base::Callback<void(int result)> callback, | 30 PatchHost(base::Callback<void(int result)> callback, |
| 31 scoped_refptr<base::SequencedTaskRunner> task_runner); | 31 scoped_refptr<base::SequencedTaskRunner> task_runner); |
| 32 | 32 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 } | 114 } |
| 115 | 115 |
| 116 content::BrowserThread::PostTask( | 116 content::BrowserThread::PostTask( |
| 117 content::BrowserThread::IO, | 117 content::BrowserThread::IO, |
| 118 FROM_HERE, | 118 FROM_HERE, |
| 119 base::Bind( | 119 base::Bind( |
| 120 &PatchHost::StartProcess, host_, base::Passed(&patch_message))); | 120 &PatchHost::StartProcess, host_, base::Passed(&patch_message))); |
| 121 } | 121 } |
| 122 | 122 |
| 123 } // namespace component_updater | 123 } // namespace component_updater |
| OLD | NEW |