#include "components/page_load_metrics/browser/metrics_navigation_throttle.h"
#include "base/memory/ptr_util.h"
#include "components/page_load_metrics/browser/metrics_web_contents_observer.h"
#include "content/public/browser/navigation_handle.h"
namespace page_load_metrics {
std::unique_ptr<content::NavigationThrottle> MetricsNavigationThrottle::Create(
content::NavigationHandle* handle) { … }
MetricsNavigationThrottle::~MetricsNavigationThrottle() { … }
content::NavigationThrottle::ThrottleCheckResult
MetricsNavigationThrottle::WillStartRequest() { … }
content::NavigationThrottle::ThrottleCheckResult
MetricsNavigationThrottle::WillProcessResponse() { … }
const char* MetricsNavigationThrottle::GetNameForLogging() { … }
MetricsNavigationThrottle::MetricsNavigationThrottle(
content::NavigationHandle* handle)
: … { … }
}