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

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

Issue 2468913002: Add CSSTiming to collect aggregate PLT-level stats about CSS. (Closed)
Patch Set: minor comment/naming changes Created 4 years, 1 month 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 aecee8dde3feb6c04b902e9bc782a7aff1caf90e..01079e6001499dd628c1d507fc9fa3136fb6d4d1 100644
--- a/third_party/WebKit/Source/web/WebPerformance.cpp
+++ b/third_party/WebKit/Source/web/WebPerformance.cpp
@@ -197,6 +197,10 @@ double WebPerformance::parseBlockedOnScriptExecutionFromDocumentWriteDuration()
->parseBlockedOnScriptExecutionFromDocumentWriteDuration());
}
+double WebPerformance::authorStyleSheetParseDurationBeforeFCP() const {
+ return m_private->timing()->authorStyleSheetParseDurationBeforeFCP();
+}
+
WebPerformance::WebPerformance(Performance* performance)
: m_private(performance) {}

Powered by Google App Engine
This is Rietveld 408576698