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

Unified Diff: Source/core/dom/Document.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/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 37dc0bd0c5dc4622a8c61f420fda65392747872e..7bd5d4bc82f1d2a9195a1dd4d090865d2fb285ec 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -1148,7 +1148,7 @@ private:
virtual bool isDocument() const OVERRIDE { return true; }
- virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
+ virtual void childrenChanged(bool changedByParser = false, const Handle<Node>& beforeChange = nullptr, const Handle<Node>& afterChange = nullptr, int childCountDelta = 0);
virtual String nodeName() const;
virtual NodeType nodeType() const;

Powered by Google App Engine
This is Rietveld 408576698