chromium/components/fingerprinting_protection_filter/browser/fingerprinting_protection_page_activation_throttle.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_PAGE_ACTIVATION_THROTTLE_H_
#define COMPONENTS_FINGERPRINTING_PROTECTION_FILTER_BROWSER_FINGERPRINTING_PROTECTION_PAGE_ACTIVATION_THROTTLE_H_

#include <memory>

#include "base/gtest_prod_util.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "components/fingerprinting_protection_filter/browser/fingerprinting_protection_profile_interaction_manager.h"
#include "content/public/browser/navigation_throttle.h"

class PrefService;

namespace privacy_sandbox {
class TrackingProtectionSettings;
}

namespace subresource_filter {
enum class ActivationDecision;
namespace mojom {
enum class ActivationLevel;
}  // namespace mojom
}  // namespace subresource_filter

namespace fingerprinting_protection_filter {

class ProfileInteractionManager;

// Navigation throttle responsible for activating subresource filtering on page
// loads that match the Fingerprinting Protection Filtering criteria.
class FingerprintingProtectionPageActivationThrottle
    : public content::NavigationThrottle {};

}  // namespace fingerprinting_protection_filter

#endif  // COMPONENTS_FINGERPRINTING_PROTECTION_FILTER_BROWSER_FINGERPRINTING_PROTECTION_PAGE_ACTIVATION_THROTTLE_H_