blob: d05dcd8f1a0334ed8a4bca5b70bcef5444e57d7b [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_UPDATER_IPC_UPDATE_SERVICE_DIALER_H_
#define CHROME_UPDATER_IPC_UPDATE_SERVICE_DIALER_H_
#include "chrome/updater/updater_scope.h"
namespace updater {
// Start the update service. Returns false if the service can't be reached.
[[nodiscard]] bool DialUpdateService(UpdaterScope scope);
// Start the update internal service. Returns false if the service can't be
// reached.
[[nodiscard]] bool DialUpdateInternalService(UpdaterScope scope);
} // namespace updater
#endif // CHROME_UPDATER_IPC_UPDATE_SERVICE_DIALER_H_