blob: f942a510b0dc9d78a09af166fcd7d07f7a5c2b77 [file] [log] [blame]
// Copyright 2018 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.
#ifndef THIRD_PARTY_BLINK_PUBLIC_WEB_WEB_NAVIGATION_TIMINGS_H_
#define THIRD_PARTY_BLINK_PUBLIC_WEB_WEB_NAVIGATION_TIMINGS_H_
#include "base/time/time.h"
namespace blink {
struct WebNavigationTimings {
base::TimeTicks input_start;
base::TimeTicks navigation_start;
base::TimeTicks redirect_start;
base::TimeTicks redirect_end;
base::TimeTicks fetch_start;
};
} // namespace blink
#endif