// Copyright 2019 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_PAGE_LOAD_METRICS_BROWSER_RESOURCE_TRACKER_H_ #define COMPONENTS_PAGE_LOAD_METRICS_BROWSER_RESOURCE_TRACKER_H_ #include <map> #include <memory> #include <vector> #include "components/page_load_metrics/common/page_load_metrics.mojom.h" #include "content/public/browser/global_request_id.h" namespace page_load_metrics { // Tracks individual resource loads on the page. Only tracks resources loaded // by the network stack (including HTTP cache). class ResourceTracker { … }; } // namespace page_load_metrics #endif // COMPONENTS_PAGE_LOAD_METRICS_BROWSER_RESOURCE_TRACKER_H_