| // Copyright 2020 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "chrome/updater/setup.h" |
| |
| #include "base/functional/bind.h" |
| #include "base/functional/callback.h" |
| #include "base/task/sequenced_task_runner.h" |
| #include "base/task/task_traits.h" |
| #include "base/task/thread_pool.h" |
| #include "base/win/windows_version.h" |
| #include "chrome/updater/constants.h" |
| #include "chrome/updater/updater_scope.h" |
| #include "chrome/updater/win/setup/win_setup.h" |
| |
| namespace updater { |
| |
| void InstallCandidate(UpdaterScope scope, |
| base::OnceCallback<void(int)> callback) { |
| if (base::win::GetVersion() < base::win::Version::WIN10) { |
| base::SequencedTaskRunner::GetCurrentDefault()->PostTask( |
| FROM_HERE, |
| base::BindOnce(std::move(callback), kErrorUnsupportedOperatingSystem)); |
| return; |
| } |
| base::ThreadPool::PostTaskAndReplyWithResult(FROM_HERE, {base::MayBlock()}, |
| base::BindOnce(&Setup, scope), |
| std::move(callback)); |
| } |
| |
| } // namespace updater |