chromium/chrome/updater/linux/setup/setup.cc

// Copyright 2022 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/posix/setup.h"

#include <stdio.h>
#include <unistd.h>

#include <optional>

#include "base/base_paths.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/logging.h"
#include "base/path_service.h"
#include "chrome/updater/constants.h"
#include "chrome/updater/linux/ipc_constants.h"
#include "chrome/updater/linux/systemd_util.h"
#include "chrome/updater/util/posix_util.h"
#include "chrome/updater/util/util.h"

namespace updater {

int Setup(UpdaterScope scope) {}

int UninstallCandidate(UpdaterScope scope) {}

int PromoteCandidate(UpdaterScope scope) {}

int Uninstall(UpdaterScope scope) {}
}  // namespace updater