chromium/chrome/updater/activity_impl_util_linux.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 <string>
#include <vector>

#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/ranges/algorithm.h"
#include "base/strings/string_split.h"
#include "chrome/updater/activity_impl_util_posix.h"
#include "chrome/updater/updater_branding.h"
#include "chrome/updater/updater_scope.h"

namespace updater {
namespace {
// Attempts to discover all of the home directories on the system by parsing
// /etc/passwd.
std::vector<base::FilePath> ReadHomeDirsFromPasswd() {}
}  // namespace

std::vector<base::FilePath> GetHomeDirPaths(UpdaterScope scope) {}

base::FilePath GetActiveFile(const base::FilePath& home_dir,
                             const std::string& id) {}
}  // namespace updater