blob: 16ce3e49d6318c884f46beced3f6762af4288453 [file] [log] [blame]
// 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/usage_stats_permissions.h"
#include <memory>
#include <optional>
#include <utility>
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/sequence_checker.h"
#include "base/task/thread_pool.h"
#include "chrome/updater/external_constants.h"
#include "chrome/updater/persisted_data.h"
#include "chrome/updater/updater_scope.h"
namespace updater {
bool AnyAppEnablesUsageStats(UpdaterScope scope) {
return false;
}
bool RemoteEventLoggingAllowed(UpdaterScope,
const std::vector<std::string>&,
std::optional<EventLoggingPermissionProvider>) {
return false;
}
} // namespace updater