Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: components/page_load_metrics/browser/page_load_metrics_observer.cc

Issue 1857443002: Plumb experiment flags through page_load_metrics and add a new observer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@page_load_experiments
Patch Set: clean up unit tests Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/page_load_metrics/browser/page_load_metrics_observer.h" 5 #include "components/page_load_metrics/browser/page_load_metrics_observer.h"
6 6
7 namespace page_load_metrics { 7 namespace page_load_metrics {
8 8
9 PageLoadExtraInfo::PageLoadExtraInfo( 9 PageLoadExtraInfo::PageLoadExtraInfo(base::TimeDelta first_background_time,
10 base::TimeDelta first_background_time, 10 base::TimeDelta first_foreground_time,
11 base::TimeDelta first_foreground_time, 11 bool started_in_foreground,
12 bool started_in_foreground, 12 const GURL& committed_url,
13 const GURL& committed_url, 13 base::TimeDelta time_to_commit,
14 base::TimeDelta time_to_commit, 14 UserAbortType abort_type,
15 UserAbortType abort_type, 15 base::TimeDelta time_to_abort,
16 base::TimeDelta time_to_abort) 16 const PageLoadMetadata& metadata)
17 : first_background_time(first_background_time), 17 : first_background_time(first_background_time),
18 first_foreground_time(first_foreground_time), 18 first_foreground_time(first_foreground_time),
19 started_in_foreground(started_in_foreground), 19 started_in_foreground(started_in_foreground),
20 committed_url(committed_url), 20 committed_url(committed_url),
21 time_to_commit(time_to_commit), 21 time_to_commit(time_to_commit),
22 abort_type(abort_type), 22 abort_type(abort_type),
23 time_to_abort(time_to_abort) {} 23 time_to_abort(time_to_abort),
24 metadata(metadata) {}
24 25
25 } // namespace page_load_metrics 26 } // namespace page_load_metrics
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698