#include "chrome/browser/safe_browsing/delayed_warning_navigation_throttle.h"
#include "base/feature_list.h"
#include "chrome/browser/preloading/prefetch/no_state_prefetch/chrome_no_state_prefetch_contents_delegate.h"
#include "chrome/browser/safe_browsing/user_interaction_observer.h"
#include "components/no_state_prefetch/browser/no_state_prefetch_contents.h"
#include "components/safe_browsing/core/common/features.h"
#include "content/public/browser/navigation_handle.h"
namespace {
const char kConsoleMessage[] = …;
}
namespace safe_browsing {
DelayedWarningNavigationThrottle::DelayedWarningNavigationThrottle(
content::NavigationHandle* navigation_handle)
: … { … }
DelayedWarningNavigationThrottle::~DelayedWarningNavigationThrottle() = default;
std::unique_ptr<DelayedWarningNavigationThrottle>
DelayedWarningNavigationThrottle::MaybeCreateNavigationThrottle(
content::NavigationHandle* navigation_handle) { … }
const char* DelayedWarningNavigationThrottle::GetNameForLogging() { … }
content::NavigationThrottle::ThrottleCheckResult
DelayedWarningNavigationThrottle::WillProcessResponse() { … }
}