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

Unified Diff: Source/core/xml/XPathResult.cpp

Issue 698923002: Enable Oilpan for core/xml/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Non-Oilpan fixes Created 6 years, 1 month 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/xml/XPathResult.h ('k') | Source/core/xml/XPathResult.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathResult.cpp
diff --git a/Source/core/xml/XPathResult.cpp b/Source/core/xml/XPathResult.cpp
index 2dcc058f1ec4579ef1599071ab6b3501f0e6d1f8..bb93f6a11c54e27ca28b9ba2f79c9f10519a8cb2 100644
--- a/Source/core/xml/XPathResult.cpp
+++ b/Source/core/xml/XPathResult.cpp
@@ -37,8 +37,6 @@ namespace blink {
using namespace XPath;
-DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(XPathResult);
-
XPathResult::XPathResult(EvaluationContext& context, const Value& value)
: m_value(value)
, m_nodeSetPosition(0)
@@ -65,6 +63,10 @@ XPathResult::XPathResult(EvaluationContext& context, const Value& value)
ASSERT_NOT_REACHED();
}
+XPathResult::~XPathResult()
+{
+}
+
void XPathResult::trace(Visitor* visitor)
{
visitor->trace(m_value);
« no previous file with comments | « Source/core/xml/XPathResult.h ('k') | Source/core/xml/XPathResult.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698