// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_NAVIGATION_HANDLE_TIMING_H_ #define CONTENT_PUBLIC_BROWSER_NAVIGATION_HANDLE_TIMING_H_ #include "base/time/time.h" #include "content/common/content_export.h" namespace content { // NavigationHandleTiming contains timing information of loading for navigation // recorded in NavigationHandle. This is used for UMAs, not exposed to // JavaScript via Navigation Timing API etc unlike mojom::NavigationTiming. See // the design doc for details. // https://docs.google.com/document/d/16oqu9lyPbfgZIjQsRaCfaKE8r1Cdlb3d4GVSdth4AN8/edit?usp=sharing struct CONTENT_EXPORT NavigationHandleTiming { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_HANDLE_TIMING_H_