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

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

Issue 334713006: Use stricter typing for NodeLists throughout the code base (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix typo Created 6 years, 6 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: Source/core/dom/Node.h
diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
index 01ceb812f8d826d38f2777fe2d46702c11478d2b..d3db7d946809c44529e4d7b46701e773ac886058 100644
--- a/Source/core/dom/Node.h
+++ b/Source/core/dom/Node.h
@@ -79,6 +79,7 @@ class RenderBoxModelObject;
class RenderObject;
class RenderStyle;
class ShadowRoot;
+class StaticNodeList;
class TagCollection;
class Text;
class TouchEvent;
@@ -666,7 +667,7 @@ public:
void updateAncestorConnectedSubframeCountForRemoval() const;
void updateAncestorConnectedSubframeCountForInsertion() const;
- PassRefPtrWillBeRawPtr<NodeList> getDestinationInsertionPoints();
+ PassRefPtrWillBeRawPtr<StaticNodeList> getDestinationInsertionPoints();
void setAlreadySpellChecked(bool flag) { setFlag(flag, AlreadySpellCheckedFlag); }
bool isAlreadySpellChecked() { return getFlag(AlreadySpellCheckedFlag); }

Powered by Google App Engine
This is Rietveld 408576698