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

Side by Side Diff: components/metrics/proto/ukm/source.proto

Issue 2719823003: Convert first contentful paint logging to the new UKM client API (Closed)
Patch Set: limit to fcp Created 3 years, 9 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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 package ukm; 7 package ukm;
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
(...skipping 10 matching lines...) Expand all
21 optional string url = 2; 21 optional string url = 2;
22 22
23 // The origin of the URL. This is reserved to be used by server side only. 23 // The origin of the URL. This is reserved to be used by server side only.
24 reserved 5; 24 reserved 5;
25 reserved "url_origin"; 25 reserved "url_origin";
26 26
27 // Timestamp of navigation to this Source, as seen by the client. Time of 27 // Timestamp of navigation to this Source, as seen by the client. Time of
28 // events related to this Source will generally be relative to this timestamp. 28 // events related to this Source will generally be relative to this timestamp.
29 optional int64 navigation_time_msec = 3; 29 optional int64 navigation_time_msec = 3;
30 30
31 // Time between navigation and the first contentful paint, in milliseconds. 31 // Time between navigation and the first contentful paint, in
32 optional int64 first_contentful_paint_msec = 4; 32 // milliseconds. Deprecated. Use ukm::Entry instead.
33 optional int64 first_contentful_paint_msec = 4 [deprecated = true];
33 } 34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698