1 // Copyright 2018 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef THIRD_PARTY_BLINK_PUBLIC_WEB_WEB_NAVIGATION_TIMINGS_H_
6 #define THIRD_PARTY_BLINK_PUBLIC_WEB_WEB_NAVIGATION_TIMINGS_H_
7 
8 #include "base/time/time.h"
9 
10 namespace blink {
11 
12 struct WebNavigationTimings {
13   base::TimeTicks input_start;
14   base::TimeTicks navigation_start;
15   base::TimeTicks redirect_start;
16   base::TimeTicks redirect_end;
17   base::TimeTicks fetch_start;
18 };
19 
20 }  // namespace blink
21 
22 #endif
23