chromium/components/page_load_metrics/browser/metrics_navigation_throttle.cc

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

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

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

}  // namespace page_load_metrics