| Index: Source/core/dom/DocumentLifecycle.h
|
| diff --git a/Source/core/dom/DocumentLifecycle.h b/Source/core/dom/DocumentLifecycle.h
|
| index 9938251e85805961df6c246b0f4e5af2664ed5ce..dcc6a6064614905b5be6f3eb3fe53c575bfee212 100644
|
| --- a/Source/core/dom/DocumentLifecycle.h
|
| +++ b/Source/core/dom/DocumentLifecycle.h
|
| @@ -44,7 +44,8 @@ public:
|
|
|
| // When the document is active, it traverses these states.
|
|
|
| - StyleRecalcPending,
|
| + VisualUpdatePending,
|
| +
|
| InStyleRecalc,
|
| StyleClean,
|
|
|
| @@ -100,11 +101,12 @@ public:
|
| bool stateAllowsTreeMutations() const;
|
|
|
| void advanceTo(State);
|
| - void rewindTo(State);
|
| + void ensureStateAtMost(State);
|
|
|
| private:
|
| #if !ASSERT_DISABLED
|
| bool canAdvanceTo(State) const;
|
| + bool canRewindTo(State) const;
|
| #endif
|
|
|
| State m_state;
|
|
|