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

Unified Diff: Source/core/dom/DocumentLifecycle.cpp

Issue 156413002: [WIP] Move layout states into the DocumentLifecycle state machine (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: uber patch Created 6 years, 10 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 | « Source/core/dom/DocumentLifecycle.h ('k') | Source/core/frame/DeprecatedScheduleStyleRecalcDuringLayout.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentLifecycle.cpp
diff --git a/Source/core/dom/DocumentLifecycle.cpp b/Source/core/dom/DocumentLifecycle.cpp
index d53e0bc9bede645eb3c4b02477a488f283a14232..06a985e97b0fb8d45ade6ea3ad79f55982d1c709 100644
--- a/Source/core/dom/DocumentLifecycle.cpp
+++ b/Source/core/dom/DocumentLifecycle.cpp
@@ -32,10 +32,35 @@
#include "core/dom/DocumentLifecycle.h"
#include "wtf/Assertions.h"
-#include <stdio.h>
namespace WebCore {
+static DocumentLifecycle::DeprecatedTransition* s_deprecatedTransitionStack = 0;
+
+DocumentLifecycle::Scope::Scope(DocumentLifecycle& lifecycle, State finalState)
+ : m_lifecycle(lifecycle)
+ , m_finalState(finalState)
+{
+}
+
+DocumentLifecycle::Scope::~Scope()
+{
+ m_lifecycle.advanceTo(m_finalState);
+}
+
+DocumentLifecycle::DeprecatedTransition::DeprecatedTransition(State from, State to)
+ : m_previous(s_deprecatedTransitionStack)
+ , m_from(from)
+ , m_to(to)
+{
+ s_deprecatedTransitionStack = this;
+}
+
+DocumentLifecycle::DeprecatedTransition::~DeprecatedTransition()
+{
+ s_deprecatedTransitionStack = m_previous;
+}
+
DocumentLifecycle::DocumentLifecycle()
: m_state(Uninitialized)
{
@@ -45,22 +70,61 @@ DocumentLifecycle::~DocumentLifecycle()
{
}
+#if !ASSERT_DISABLED
+
+static bool isClean(DocumentLifecycle::State state)
+{
+ return state == DocumentLifecycle::StyleClean || state == DocumentLifecycle::LayoutClean;
+}
+
bool DocumentLifecycle::canAdvanceTo(State state) const
{
+ // This transition is bogus, but we've whitelisted it anyway.
+ if (s_deprecatedTransitionStack && m_state == s_deprecatedTransitionStack->from() && state == s_deprecatedTransitionStack->to())
+ return true;
+
if (state > m_state)
return true;
// FIXME: We can dispose a document multiple times. This seems wrong.
// See https://code.google.com/p/chromium/issues/detail?id=301668.
- if (m_state == Disposed)
+ if (m_state == Disposed) {
return state == Disposed;
- if (m_state == Clean) {
- // We can synchronously enter recalc style without rewinding to
- // StyleRecalcPending.
- return state == InStyleRecalc;
+ } else if (isClean(m_state)) {
+ if (state == StyleRecalcPending)
+ return true;
+ // We can synchronously recalc style.
+ if (state == InStyleRecalc)
+ return true;
+ // We can synchronously perform layout.
+ if (state == InPreLayout)
+ return true;
+ if (state == InPerformLayout)
+ return true;
+ if (isClean(state))
+ return true;
+ return false;
+ } else if (m_state == InPreLayout) {
+ if (state == InStyleRecalc)
+ return true;
+ if (state == StyleClean)
+ return true;
+ if (state == InPreLayout)
+ return true;
+ return false;
+ } else if (m_state == AfterPerformLayout) {
+ if (state == InPreLayout)
+ return true;
+ // If we're doing a partial layout, we won't actually end up cleaning
+ // out all the layout dirty bits. Instead, we'll return to StyleClean.
+ if (state == StyleClean)
+ return true;
+ return false;
}
return false;
}
+#endif
+
void DocumentLifecycle::advanceTo(State state)
{
ASSERT(canAdvanceTo(state));
@@ -69,10 +133,7 @@ void DocumentLifecycle::advanceTo(State state)
void DocumentLifecycle::rewindTo(State state)
{
- ASSERT(m_state == Clean);
- ASSERT(state < m_state);
- m_state = state;
- ASSERT(isActive());
+ advanceTo(state);
}
}
« no previous file with comments | « Source/core/dom/DocumentLifecycle.h ('k') | Source/core/frame/DeprecatedScheduleStyleRecalcDuringLayout.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698