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

Unified Diff: Source/core/html/HTMLAllCollection.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/HTMLAllCollection.h
diff --git a/Source/core/html/HTMLAllCollection.h b/Source/core/html/HTMLAllCollection.h
index ad21e2591285cb799402aaf309141e6a3b4f1d21..d70e72ddc92fa35c0adf53d0c7b73f00c4547033 100644
--- a/Source/core/html/HTMLAllCollection.h
+++ b/Source/core/html/HTMLAllCollection.h
@@ -32,13 +32,13 @@ namespace WebCore {
class HTMLAllCollection : public HTMLCollection {
public:
- static PassRefPtr<HTMLAllCollection> create(Node*, CollectionType);
+ static PassRefPtr<HTMLAllCollection> create(const Handle<Node>&, CollectionType);
virtual ~HTMLAllCollection();
- Node* namedItemWithIndex(const AtomicString& name, unsigned index) const;
+ Result<Node> namedItemWithIndex(const AtomicString& name, unsigned index) const;
private:
- HTMLAllCollection(Node*, CollectionType);
+ HTMLAllCollection(const Handle<Node>&, CollectionType);
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698