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

Unified Diff: Source/core/page/FrameView.cpp

Issue 22880008: Instrument performPostLayoutTasks and updateCompositingLayers* (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
« 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: Source/core/page/FrameView.cpp
diff --git a/Source/core/page/FrameView.cpp b/Source/core/page/FrameView.cpp
index 496c0cd9bfc08918e7c0feb2e24ce98f06b54c11..63be9fe54517080f4ac5e3acbec7729dba4cf479 100644
--- a/Source/core/page/FrameView.cpp
+++ b/Source/core/page/FrameView.cpp
@@ -676,6 +676,7 @@ void FrameView::calculateScrollbarModesForLayout(ScrollbarMode& hMode, Scrollbar
void FrameView::updateCompositingLayersAfterStyleChange()
{
+ TRACE_EVENT0("webkit", "FrameView::updateCompositingLayersAfterStyleChange");
RenderView* renderView = this->renderView();
if (!renderView)
return;
@@ -698,6 +699,7 @@ void FrameView::updateCompositingLayersAfterStyleChange()
void FrameView::updateCompositingLayersAfterLayout()
{
+ TRACE_EVENT0("webkit", "FrameView::updateCompositingLayersAfterLayout");
RenderView* renderView = this->renderView();
if (!renderView)
return;
@@ -2148,6 +2150,7 @@ void FrameView::flushAnyPendingPostLayoutTasks()
void FrameView::performPostLayoutTasks()
{
+ TRACE_EVENT0("webkit", "FrameView::performPostLayoutTasks");
// updateWidgets() call below can blow us away from underneath.
RefPtr<FrameView> protect(this);
« 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