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

Unified Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_page_load_timing.cc

Issue 2363913003: Add FMP to DataReductionProxy UMA and to Pingback Metrics (Closed)
Patch Set: rebase Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: components/data_reduction_proxy/core/common/data_reduction_proxy_page_load_timing.cc
diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_page_load_timing.cc b/components/data_reduction_proxy/core/common/data_reduction_proxy_page_load_timing.cc
index b7357d0081ae496fad29b210621634ad9638ae5a..a5ed2e43856137766c8b96918e76416394891ad1 100644
--- a/components/data_reduction_proxy/core/common/data_reduction_proxy_page_load_timing.cc
+++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_page_load_timing.cc
@@ -5,26 +5,28 @@
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_page_load_timing.h"
namespace data_reduction_proxy {
DataReductionProxyPageLoadTiming::DataReductionProxyPageLoadTiming(
const base::Time& navigation_start,
const base::Optional<base::TimeDelta>& response_start,
const base::Optional<base::TimeDelta>& load_event_start,
const base::Optional<base::TimeDelta>& first_image_paint,
const base::Optional<base::TimeDelta>& first_contentful_paint,
+ const base::Optional<base::TimeDelta>& experimental_first_meaningful_paint,
const base::Optional<base::TimeDelta>&
parse_blocked_on_script_load_duration,
const base::Optional<base::TimeDelta>& parse_stop)
: navigation_start(navigation_start),
response_start(response_start),
load_event_start(load_event_start),
first_image_paint(first_image_paint),
first_contentful_paint(first_contentful_paint),
+ experimental_first_meaningful_paint(experimental_first_meaningful_paint),
parse_blocked_on_script_load_duration(
parse_blocked_on_script_load_duration),
parse_stop(parse_stop) {}
DataReductionProxyPageLoadTiming::DataReductionProxyPageLoadTiming(
const DataReductionProxyPageLoadTiming& other) = default;
} // namespace data_reduction_proxy

Powered by Google App Engine
This is Rietveld 408576698