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

Unified Diff: Source/core/html/shadow/InsertionPoint.h

Issue 22043003: [oilpan] Handlify childrenChanged. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 4 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/shadow/InsertionPoint.h
diff --git a/Source/core/html/shadow/InsertionPoint.h b/Source/core/html/shadow/InsertionPoint.h
index e843153e53dc4da359bb91c139e8500a2f30e143..086dd35ab04ba5ba7b1238d226019fa7d37aa68b 100644
--- a/Source/core/html/shadow/InsertionPoint.h
+++ b/Source/core/html/shadow/InsertionPoint.h
@@ -94,7 +94,7 @@ public:
protected:
InsertionPoint(const QualifiedName&, Handle<Document>);
virtual bool rendererIsNeeded(const NodeRenderingContext&) OVERRIDE;
- virtual void childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta) OVERRIDE;
+ virtual void childrenChanged(bool changedByParser, const Handle<Node>& beforeChange, const Handle<Node>& afterChange, int childCountDelta) OVERRIDE;
virtual InsertionNotificationRequest insertedInto(const Handle<ContainerNode>&) OVERRIDE;
virtual void removedFrom(const Handle<ContainerNode>&) OVERRIDE;
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698