| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 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 #include "components/page_load_metrics/browser/page_load_metrics_observer.h" | |
| 6 | |
| 7 namespace page_load_metrics { | |
| 8 | |
| 9 PageLoadExtraInfo::PageLoadExtraInfo( | |
| 10 const base::Optional<base::TimeDelta>& first_background_time, | |
| 11 const base::Optional<base::TimeDelta>& first_foreground_time, | |
| 12 bool started_in_foreground, | |
| 13 const GURL& committed_url, | |
| 14 const base::Optional<base::TimeDelta>& time_to_commit, | |
| 15 UserAbortType abort_type, | |
| 16 const base::Optional<base::TimeDelta>& time_to_abort, | |
| 17 const PageLoadMetadata& metadata) | |
| 18 : first_background_time(first_background_time), | |
| 19 first_foreground_time(first_foreground_time), | |
| 20 started_in_foreground(started_in_foreground), | |
| 21 committed_url(committed_url), | |
| 22 time_to_commit(time_to_commit), | |
| 23 abort_type(abort_type), | |
| 24 time_to_abort(time_to_abort), | |
| 25 metadata(metadata) {} | |
| 26 | |
| 27 PageLoadExtraInfo::PageLoadExtraInfo(const PageLoadExtraInfo& other) = default; | |
| 28 | |
| 29 PageLoadExtraInfo::~PageLoadExtraInfo() {} | |
| 30 | |
| 31 FailedProvisionalLoadInfo::FailedProvisionalLoadInfo(base::TimeDelta interval, | |
| 32 net::Error error) | |
| 33 : time_to_failed_provisional_load(interval), error(error) {} | |
| 34 | |
| 35 FailedProvisionalLoadInfo::~FailedProvisionalLoadInfo() {} | |
| 36 | |
| 37 } // namespace page_load_metrics | |
| OLD | NEW |