#include "chrome/browser/interstitials/chrome_settings_page_helper.h"
#include "build/build_config.h"
#include "components/safe_browsing/buildflags.h"
#include "content/public/browser/web_contents.h"
#if BUILDFLAG(IS_ANDROID)
#include "chrome/browser/safe_browsing/android/safe_browsing_settings_launcher_android.h"
#include "components/safe_browsing/core/common/safe_browsing_settings_metrics.h"
#else
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/chrome_pages.h"
#include "components/safe_browsing/core/common/safebrowsing_referral_methods.h"
#endif
namespace security_interstitials {
std::unique_ptr<security_interstitials::SettingsPageHelper>
ChromeSettingsPageHelper::CreateChromeSettingsPageHelper() { … }
void ChromeSettingsPageHelper::OpenEnhancedProtectionSettings(
content::WebContents* web_contents) const { … }
void ChromeSettingsPageHelper::OpenEnhancedProtectionSettingsWithIph(
content::WebContents* web_contents,
safe_browsing::SafeBrowsingSettingReferralMethod referral_method) const { … }
}