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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 2653733004: Add Blink.PrePaint.UpdateTime as an alias of Blink.PaintInvalidation.UpdateTime (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index e9af56f59fac9f39a92d03b2917a03a4708c5416..d76f103605d5c5d3c618d1595e0a3e9882ae59ba 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -3190,7 +3190,11 @@ void FrameView::updateStyleAndLayoutIfNeededRecursiveInternal() {
void FrameView::invalidateTreeIfNeededRecursive() {
SCOPED_BLINK_UMA_HISTOGRAM_TIMER("Blink.PaintInvalidation.UpdateTime");
- invalidateTreeIfNeededRecursiveInternal();
+ {
+ // For comparison to SlimmingPaintInvalidation.
+ SCOPED_BLINK_UMA_HISTOGRAM_TIMER("Blink.PrePaint.UpdateTime");
+ invalidateTreeIfNeededRecursiveInternal();
+ }
}
void FrameView::invalidateTreeIfNeededRecursiveInternal() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698