chromium/chrome/updater/activity_impl_posix.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/activity_impl.h"

#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>

#include <string>
#include <vector>

#include "base/files/file.h"
#include "base/files/file_util.h"
#include "base/files/scoped_file.h"
#include "base/logging.h"
#include "base/posix/eintr_wrapper.h"
#include "base/ranges/algorithm.h"
#include "chrome/updater/activity_impl_util_posix.h"

namespace updater {
enum class UpdaterScope;

void ClearActiveBit(const base::FilePath& home_dir, const std::string& id) {}

bool GetActiveBit(UpdaterScope scope, const std::string& id) {}

void ClearActiveBit(UpdaterScope scope, const std::string& id) {}

}  // namespace updater