| Index: components/page_load_metrics/browser/metrics_navigation_throttle.cc
|
| diff --git a/components/page_load_metrics/browser/metrics_navigation_throttle.cc b/components/page_load_metrics/browser/metrics_navigation_throttle.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8b9818cf9c8b6aef43ff9a34228db4b1579b777b
|
| --- /dev/null
|
| +++ b/components/page_load_metrics/browser/metrics_navigation_throttle.cc
|
| @@ -0,0 +1,35 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// 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) {
|
| + return base::WrapUnique(new MetricsNavigationThrottle(handle));
|
| +}
|
| +
|
| +MetricsNavigationThrottle::~MetricsNavigationThrottle() {}
|
| +
|
| +content::NavigationThrottle::ThrottleCheckResult
|
| +MetricsNavigationThrottle::WillStartRequest() {
|
| + MetricsWebContentsObserver* observer =
|
| + MetricsWebContentsObserver::FromWebContents(
|
| + navigation_handle()->GetWebContents());
|
| + if (observer)
|
| + observer->WillStartNavigationRequest(navigation_handle());
|
| + return content::NavigationThrottle::PROCEED;
|
| +}
|
| +
|
| +MetricsNavigationThrottle::MetricsNavigationThrottle(
|
| + content::NavigationHandle* handle)
|
| + : content::NavigationThrottle(handle) {}
|
| +
|
| +} // namespace page_load_metrics
|
|
|