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

Unified Diff: Source/core/html/HTMLContentElement.cpp

Issue 1123353003: Oilpan: fix build after r194987. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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/html/HTMLContentElement.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLContentElement.cpp
diff --git a/Source/core/html/HTMLContentElement.cpp b/Source/core/html/HTMLContentElement.cpp
index a4f7c9f57abebd5fd3f32f685c978a736d0dbfb8..6399f36330458d97b7f1bd3e71b5b10f95c76834 100644
--- a/Source/core/html/HTMLContentElement.cpp
+++ b/Source/core/html/HTMLContentElement.cpp
@@ -40,6 +40,11 @@ namespace blink {
using namespace HTMLNames;
+PassRefPtrWillBeRawPtr<HTMLContentElement> HTMLContentElement::create(Document& document, PassOwnPtrWillBeRawPtr<HTMLContentSelectFilter> filter)
+{
+ return adoptRefWillBeNoop(new HTMLContentElement(document, filter));
+}
+
inline HTMLContentElement::HTMLContentElement(Document& document, PassOwnPtrWillBeRawPtr<HTMLContentSelectFilter> filter)
: InsertionPoint(contentTag, document)
, m_shouldParseSelect(false)
@@ -48,13 +53,14 @@ inline HTMLContentElement::HTMLContentElement(Document& document, PassOwnPtrWill
{
}
-PassRefPtrWillBeRawPtr<HTMLContentElement> HTMLContentElement::create(Document& document, PassOwnPtrWillBeRawPtr<HTMLContentSelectFilter> filter)
+HTMLContentElement::~HTMLContentElement()
{
- return adoptRefWillBeNoop(new HTMLContentElement(document, filter));
}
-HTMLContentElement::~HTMLContentElement()
+DEFINE_TRACE(HTMLContentElement)
{
+ visitor->trace(m_filter);
+ InsertionPoint::trace(visitor);
}
void HTMLContentElement::parseSelect()
« no previous file with comments | « Source/core/html/HTMLContentElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698