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

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

Issue 2646163003: 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 68f77db667941483f51aa47191573608e1dddd31..d7edc94fec4cdd624a8e006df8647ba57fcdfb30 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -3213,7 +3213,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