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

Unified Diff: Source/core/dom/ContainerNode.cpp

Issue 19510005: [oilpan] Completely move HTMLFormControlElement's hierarchy to the managed heap Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 5 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
« no previous file with comments | « Source/core/dom/CheckedRadioButtons.cpp ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ContainerNode.cpp
diff --git a/Source/core/dom/ContainerNode.cpp b/Source/core/dom/ContainerNode.cpp
index b4f97cdf0115a7475befb9f2f1ea738a795de4b8..404d2eb3343ea638851045ab38aebbd4df69d2bc 100644
--- a/Source/core/dom/ContainerNode.cpp
+++ b/Source/core/dom/ContainerNode.cpp
@@ -615,7 +615,7 @@ void ContainerNode::removeChildren()
dispatchSubtreeModifiedEvent();
}
-bool ContainerNode::appendChild(Handle<Node> newChild, ExceptionCode& ec, AttachBehavior attachBehavior) { appendChild(newChild.passRefPtr(), ec, attachBehavior); }
+bool ContainerNode::appendChild(Handle<Node> newChild, ExceptionCode& ec, AttachBehavior attachBehavior) { return appendChild(newChild.passRefPtr(), ec, attachBehavior); }
bool ContainerNode::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, AttachBehavior attachBehavior)
{
« no previous file with comments | « Source/core/dom/CheckedRadioButtons.cpp ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698