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

Unified Diff: third_party/WebKit/Source/web/WebPerformance.cpp

Issue 2039363003: FirstMeaningfulPaint UMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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: third_party/WebKit/Source/web/WebPerformance.cpp
diff --git a/third_party/WebKit/Source/web/WebPerformance.cpp b/third_party/WebKit/Source/web/WebPerformance.cpp
index eca3b0bfd2c738d07946e3d523e0219345fa4f35..49882d2276047dd885e4a0db46dad606cf77ac98 100644
--- a/third_party/WebKit/Source/web/WebPerformance.cpp
+++ b/third_party/WebKit/Source/web/WebPerformance.cpp
@@ -190,6 +190,11 @@ double WebPerformance::firstContentfulPaint() const
return millisecondsToSeconds(m_private->timing()->firstContentfulPaint());
}
+double WebPerformance::firstMeaningfulPaint() const
+{
+ return millisecondsToSeconds(m_private->timing()->firstMeaningfulPaint());
+}
+
double WebPerformance::parseStart() const
{
return millisecondsToSeconds(m_private->timing()->parseStart());
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/GraphicsLayerClient.h ('k') | third_party/WebKit/public/web/WebPerformance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698