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

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

Issue 23983034: [oilpan] Handlify Node raw pointers in html/ and subclasses of dom/LiveNodeList. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 3 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/RadioNodeList.h
diff --git a/Source/core/html/RadioNodeList.h b/Source/core/html/RadioNodeList.h
index 58ae81409487243c92c3382c866e3beee78a213f..f4bcfc24e2eae662e691fdc1c3382636aaae5f35 100644
--- a/Source/core/html/RadioNodeList.h
+++ b/Source/core/html/RadioNodeList.h
@@ -36,7 +36,7 @@ namespace WebCore {
class RadioNodeList : public LiveNodeList {
public:
- static PassRefPtr<RadioNodeList> create(Node* rootNode, CollectionType type, const AtomicString& name)
+ static PassRefPtr<RadioNodeList> create(const Handle<Node>& rootNode, CollectionType type, const AtomicString& name)
{
ASSERT_UNUSED(type, type == RadioNodeListType);
return adoptRef(new RadioNodeList(rootNode, name));
@@ -51,7 +51,7 @@ protected:
virtual bool nodeMatches(const Handle<Element>&) const;
private:
- RadioNodeList(Node*, const AtomicString& name);
+ RadioNodeList(const Handle<Node>&, const AtomicString& name);
bool checkElementMatchesRadioNodeListFilter(const Handle<Element>&) const;
AtomicString m_name;

Powered by Google App Engine
This is Rietveld 408576698