// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SUBRESOURCE_FILTER_CONTENT_SHARED_BROWSER_PAGE_LOAD_STATISTICS_H_ #define COMPONENTS_SUBRESOURCE_FILTER_CONTENT_SHARED_BROWSER_PAGE_LOAD_STATISTICS_H_ #include <string_view> #include "components/subresource_filter/core/mojom/subresource_filter.mojom.h" namespace subresource_filter { // This class is notified of metrics recorded for individual (sub-)documents of // a page, aggregates them, and logs the aggregated metrics to UMA histograms // when the page load is complete (at the load event). class PageLoadStatistics { … }; } // namespace subresource_filter #endif // COMPONENTS_SUBRESOURCE_FILTER_CONTENT_SHARED_BROWSER_PAGE_LOAD_STATISTICS_H_