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

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

Issue 2390543002: Reflow comments in core/dom/. (Closed)
Patch Set: Reformat comments in core/dom/. Created 4 years, 2 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 4b7a13b7bde48396a8d62684230d2b8ae6d2991b..8a05f66132effcf255ec2ebb9ff72cbda8ce650a 100644
--- a/third_party/WebKit/Source/core/dom/DocumentLifecycle.h
+++ b/third_party/WebKit/Source/core/dom/DocumentLifecycle.h
@@ -69,7 +69,8 @@ class CORE_EXPORT DocumentLifecycle {
PaintInvalidationClean,
// In InPrePaint step, any data needed by painting are prepared.
- // When RuntimeEnabledFeatures::slimmingPaintV2Enabled, paint property trees are built.
+ // When RuntimeEnabledFeatures::slimmingPaintV2Enabled, paint property trees
+ // are built.
// Otherwise these steps are not applicable.
InPrePaint,
PrePaintClean,
@@ -218,8 +219,8 @@ class CORE_EXPORT DocumentLifecycle {
};
inline bool DocumentLifecycle::stateAllowsTreeMutations() const {
- // FIXME: We should not allow mutations in InPreLayout or AfterPerformLayout either,
- // but we need to fix MediaList listeners and plugins first.
+ // FIXME: We should not allow mutations in InPreLayout or AfterPerformLayout
+ // either, but we need to fix MediaList listeners and plugins first.
return m_state != InStyleRecalc && m_state != InPerformLayout &&
m_state != InCompositingUpdate && m_state != InPrePaint &&
m_state != InPaint;
« no previous file with comments | « third_party/WebKit/Source/core/dom/DocumentInit.cpp ('k') | third_party/WebKit/Source/core/dom/DocumentOrShadowRoot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698