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

Unified Diff: third_party/WebKit/Source/core/dom/DocumentLifecycle.h

Issue 2795263002: Add a new document lifecycle; CompositingInputsClean (Closed)
Patch Set: Address reviewer comments Created 3 years, 8 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
Index: third_party/WebKit/Source/core/dom/DocumentLifecycle.h
diff --git a/third_party/WebKit/Source/core/dom/DocumentLifecycle.h b/third_party/WebKit/Source/core/dom/DocumentLifecycle.h
index e19d313472ca968efefb2977882822505f668950..3040b3e671e0d929b9cda527b59ec39c6badca08 100644
--- a/third_party/WebKit/Source/core/dom/DocumentLifecycle.h
+++ b/third_party/WebKit/Source/core/dom/DocumentLifecycle.h
@@ -67,6 +67,7 @@ class CORE_EXPORT DocumentLifecycle {
kLayoutClean,
kInCompositingUpdate,
+ kCompositingInputsClean,
kCompositingClean,
kInPaintInvalidation,
@@ -245,9 +246,9 @@ inline bool DocumentLifecycle::StateAllowsDetach() const {
return state_ == kVisualUpdatePending || state_ == kInStyleRecalc ||
state_ == kStyleClean || state_ == kLayoutSubtreeChangeClean ||
state_ == kInPreLayout || state_ == kLayoutClean ||
- state_ == kCompositingClean || state_ == kPaintInvalidationClean ||
- state_ == kPrePaintClean || state_ == kPaintClean ||
- state_ == kStopping;
+ state_ == kCompositingInputsClean || state_ == kCompositingClean ||
+ state_ == kPaintInvalidationClean || state_ == kPrePaintClean ||
+ state_ == kPaintClean || state_ == kStopping;
}
inline bool DocumentLifecycle::StateAllowsLayoutInvalidation() const {

Powered by Google App Engine
This is Rietveld 408576698