chromium/content/browser/renderer_host/http_error_navigation_throttle.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {

// static
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) {}

}  // namespace content