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

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

Issue 2473743003: Call Element::rebuildLayoutTree from Document::updateStyle directly (Closed)
Patch Set: Commit the renames Created 4 years, 1 month 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/Element.h
diff --git a/third_party/WebKit/Source/core/dom/Element.h b/third_party/WebKit/Source/core/dom/Element.h
index aa41e1dba60254cceaefc0a5dfb2ba5b30c429da..3164d5e247d41a8fb3c65625419bc37e3e6069d9 100644
--- a/third_party/WebKit/Source/core/dom/Element.h
+++ b/third_party/WebKit/Source/core/dom/Element.h
@@ -398,7 +398,7 @@ class CORE_EXPORT Element : public ContainerNode {
virtual LayoutObject* createLayoutObject(const ComputedStyle&);
virtual bool layoutObjectIsNeeded(const ComputedStyle&);
void recalcStyle(StyleRecalcChange, Text* nextTextSibling = nullptr);
- StyleRecalcChange rebuildLayoutTree();
+ void rebuildLayoutTree();
void pseudoStateChanged(CSSSelector::PseudoType);
void setAnimationStyleChange(bool);
void clearAnimationStyleChange();
@@ -821,6 +821,8 @@ class CORE_EXPORT Element : public ContainerNode {
PassRefPtr<ComputedStyle> propagateInheritedProperties(StyleRecalcChange);
StyleRecalcChange recalcOwnStyle(StyleRecalcChange, Text*);
+ void reattachPseudoElementLayoutTree(PseudoId);
+ void rebuildShadowRootLayoutTree();
inline void checkForEmptyStyleChange();
void updatePseudoElement(PseudoId, StyleRecalcChange);

Powered by Google App Engine
This is Rietveld 408576698