#ifndef CHROME_BROWSER_FINGERPRINTING_PROTECTION_CHROME_FINGERPRINTING_PROTECTION_WEB_CONTENTS_HELPER_FACTORY_H_
#define CHROME_BROWSER_FINGERPRINTING_PROTECTION_CHROME_FINGERPRINTING_PROTECTION_WEB_CONTENTS_HELPER_FACTORY_H_
class PrefService;
namespace content {
class WebContents;
}
namespace privacy_sandbox {
class TrackingProtectionSettings;
}
void CreateFingerprintingProtectionWebContentsHelper(
content::WebContents* web_contents,
PrefService* pref_service,
privacy_sandbox::TrackingProtectionSettings* tracking_protection_settings,
bool is_incognito);
#endif