#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 fingerprinting_protection_filter {
class ProfileInteractionManager;
class FingerprintingProtectionPageActivationThrottle
: public content::NavigationThrottle { … };
}
#endif