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

Unified Diff: Source/core/dom/ShadowRoot.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/ShadowRoot.h
diff --git a/Source/core/dom/ShadowRoot.h b/Source/core/dom/ShadowRoot.h
index 43928cefd78cda28caaa4f0f81582b93706e8ea0..bd6f7028541155e2fb305eed6b8712c9c34a18ee 100644
--- a/Source/core/dom/ShadowRoot.h
+++ b/Source/core/dom/ShadowRoot.h
@@ -106,7 +106,7 @@ private:
virtual ~ShadowRoot();
virtual bool childTypeAllowed(NodeType) const 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;
// ShadowRoots should never be cloned.
virtual PassRefPtr<Node> cloneNode(bool) OVERRIDE { return 0; }

Powered by Google App Engine
This is Rietveld 408576698