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

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

Issue 149243006: Decide on IsFinishedParsingChilden for flag name (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Bring back friend Document Created 6 years, 11 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 | « no previous file | Source/core/dom/Element.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Element.h
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
index ff899822534bda2e6f24c4e82643280cf7dd64f6..ba928208c940642fade80bcaca21bd39cb82c605 100644
--- a/Source/core/dom/Element.h
+++ b/Source/core/dom/Element.h
@@ -417,8 +417,7 @@ public:
virtual void didBecomeFullscreenElement() { }
virtual void willStopBeingFullscreenElement() { }
- // FIXME: Pick one name and remove the other method.
- bool isFinishedParsingChildren() const { return isParsingChildrenFinished(); }
+ using Node::isFinishedParsingChildren; // make public for SelectorChecker
// Called by the parser when this element's close tag is reached,
// signaling that all child tags have been parsed and added.
@@ -428,7 +427,7 @@ public:
// but making parsing a special case in this respect should be avoided if possible.
virtual void finishParsingChildren();
- void beginParsingChildren() { setIsParsingChildrenFinished(false); }
+ void beginParsingChildren() { setIsFinishedParsingChildren(false); }
PseudoElement* pseudoElement(PseudoId) const;
RenderObject* pseudoElementRenderer(PseudoId) const;
« no previous file with comments | « no previous file | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698