blob: 98a91b7b834a22372a14efa29cdab591cc387ed3 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/updater/update_apps.h"
#include "chrome/updater/configurator.h"
#include "chrome/updater/mac/update_service_out_of_process.h"
namespace updater {
std::unique_ptr<UpdateService> CreateUpdateService(
scoped_refptr<update_client::Configurator> config) {
return std::make_unique<UpdateServiceOutOfProcess>();
}
} // namespace updater