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

Unified Diff: Source/core/html/HTMLOptionsCollection.h

Issue 132923003: Make sure the rootNode of a LiveNodeListBase is always a ContainerNode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Slightly clearer cast 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
Index: Source/core/html/HTMLOptionsCollection.h
diff --git a/Source/core/html/HTMLOptionsCollection.h b/Source/core/html/HTMLOptionsCollection.h
index fe5ad5d746e37a5d641dbf153e802d8cf064cd0d..da495683c905e97fd3aac1d397b6df6f7c4d33a1 100644
--- a/Source/core/html/HTMLOptionsCollection.h
+++ b/Source/core/html/HTMLOptionsCollection.h
@@ -34,7 +34,7 @@ class HTMLSelectElement;
class HTMLOptionsCollection FINAL : public HTMLCollection {
public:
- static PassRefPtr<HTMLOptionsCollection> create(Node*, CollectionType);
+ static PassRefPtr<HTMLOptionsCollection> create(ContainerNode*, CollectionType);
void add(PassRefPtr<HTMLOptionElement>, ExceptionState&);
void add(PassRefPtr<HTMLOptionElement>, int index, ExceptionState&);
@@ -50,7 +50,7 @@ public:
bool anonymousIndexedSetterRemove(unsigned, ExceptionState&);
private:
- explicit HTMLOptionsCollection(Node*);
+ explicit HTMLOptionsCollection(ContainerNode*);
};
} //namespace

Powered by Google App Engine
This is Rietveld 408576698