chromium/components/fingerprinting_protection_filter/browser/fingerprinting_protection_ruleset_publisher.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_FINGERPRINTING_PROTECTION_FILTER_BROWSER_FINGERPRINTING_PROTECTION_RULESET_PUBLISHER_H_
#define COMPONENTS_FINGERPRINTING_PROTECTION_FILTER_BROWSER_FINGERPRINTING_PROTECTION_RULESET_PUBLISHER_H_

#include <memory>
#include <utility>

#include "base/files/file.h"
#include "base/memory/ref_counted.h"
#include "base/task/sequenced_task_runner.h"
#include "components/fingerprinting_protection_filter/common/fingerprinting_protection_filter_constants.h"
#include "components/subresource_filter/content/shared/browser/ruleset_publisher.h"

namespace content {
class RenderProcessHost;
}  // namespace content

namespace subresource_filter {
class RulesetService;
}  // namespace subresource_filter

namespace fingerprinting_protection_filter {

class FingerprintingProtectionRulesetPublisher
    : public subresource_filter::RulesetPublisher {};

}  // namespace fingerprinting_protection_filter

#endif  // COMPONENTS_FINGERPRINTING_PROTECTION_FILTER_BROWSER_FINGERPRINTING_PROTECTION_RULESET_PUBLISHER_H_