Chromium Code Reviews

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

Issue 6286151: Merge 77706 - 2011-02-04 Adam Barth <abarth@webkit.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/WebCore/page/FrameView.h ('k') | Tools/ChangeLog » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/page/FrameView.cpp
===================================================================
--- Source/WebCore/page/FrameView.cpp (revision 77831)
+++ Source/WebCore/page/FrameView.cpp (working copy)
@@ -1819,7 +1819,16 @@
return m_widgetUpdateSet->isEmpty();
}
-
+
+void FrameView::flushAnyPendingPostLayoutTasks()
+{
+ if (!m_hasPendingPostLayoutTasks)
+ return;
+
+ m_postLayoutTasksTimer.stop();
+ performPostLayoutTasks();
+}
+
void FrameView::performPostLayoutTasks()
{
m_hasPendingPostLayoutTasks = false;
« no previous file with comments | « Source/WebCore/page/FrameView.h ('k') | Tools/ChangeLog » ('j') | no next file with comments »

Powered by Google App Engine