#include "content/browser/renderer_host/http_error_navigation_throttle.h"
#include "base/memory/ptr_util.h"
#include "base/task/single_thread_task_runner.h"
#include "content/browser/renderer_host/navigation_request.h"
#include "content/public/common/content_client.h"
namespace content {
std::unique_ptr<NavigationThrottle>
HttpErrorNavigationThrottle::MaybeCreateThrottleFor(
NavigationHandle& navigation_handle) { … }
HttpErrorNavigationThrottle::HttpErrorNavigationThrottle(
NavigationHandle& navigation_handle)
: … { … }
const char* HttpErrorNavigationThrottle::GetNameForLogging() { … }
HttpErrorNavigationThrottle::~HttpErrorNavigationThrottle() = default;
NavigationThrottle::ThrottleCheckResult
HttpErrorNavigationThrottle::WillProcessResponse() { … }
void HttpErrorNavigationThrottle::OnBodyReadable(MojoResult) { … }
}