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

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

Issue 2795263002: Add a new document lifecycle; CompositingInputsClean (Closed)
Patch Set: Rebase 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
« no previous file with comments | « third_party/WebKit/Source/core/BUILD.gn ('k') | third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 fe0f1e7f228b976c13d33953e4316decde938631..62b979c843726652d798571d13a91c8ae0d0f010 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 {
« no previous file with comments | « third_party/WebKit/Source/core/BUILD.gn ('k') | third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698