blob: 7b76f84a8eedb29b6a052015d15f6a42ed1c9e20 [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 "base/memory/ref_counted.h"
#include "chrome/updater/mac/control_service_proxy.h"
#include "chrome/updater/mac/update_service_proxy.h"
#include "chrome/updater/service_scope.h"
namespace updater {
scoped_refptr<UpdateService> CreateUpdateService() {
return base::MakeRefCounted<UpdateServiceProxy>(GetProcessScope());
}
scoped_refptr<ControlService> CreateControlService() {
return base::MakeRefCounted<ControlServiceProxy>(GetProcessScope());
}
} // namespace updater