#include "components/safe_browsing/content/browser/safe_browsing_navigation_throttle.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram_functions.h"
#include "components/safe_browsing/content/browser/safe_browsing_blocking_page.h"
#include "components/safe_browsing/content/browser/safe_browsing_blocking_page_factory.h"
#include "components/safe_browsing/content/browser/ui_manager.h"
#include "components/security_interstitials/content/security_interstitial_tab_helper.h"
#include "components/security_interstitials/core/unsafe_resource.h"
#include "content/public/browser/navigation_handle.h"
namespace safe_browsing {
std::unique_ptr<content::NavigationThrottle>
SafeBrowsingNavigationThrottle::MaybeCreateThrottleFor(
content::NavigationHandle* handle,
SafeBrowsingUIManager* ui_manager) { … }
SafeBrowsingNavigationThrottle::SafeBrowsingNavigationThrottle(
content::NavigationHandle* handle,
SafeBrowsingUIManager* manager)
: … { … }
const char* SafeBrowsingNavigationThrottle::GetNameForLogging() { … }
content::NavigationThrottle::ThrottleCheckResult
SafeBrowsingNavigationThrottle::WillFailRequest() { … }
}