| Index: Source/core/xml/XPathResult.h
|
| diff --git a/Source/core/xml/XPathResult.h b/Source/core/xml/XPathResult.h
|
| index ee3db6f54f58aa8cf2b948859d0eb07cf0bed6f4..fe7cd69b0219593d3d81ca8ba6c6eaf626340884 100644
|
| --- a/Source/core/xml/XPathResult.h
|
| +++ b/Source/core/xml/XPathResult.h
|
| @@ -39,7 +39,8 @@ class Document;
|
| class ExceptionState;
|
| class Node;
|
|
|
| -class XPathResult : public RefCountedWillBeGarbageCollectedFinalized<XPathResult>, public ScriptWrappable {
|
| +class XPathResult FINAL : public RefCountedWillBeGarbageCollected<XPathResult>, public ScriptWrappable {
|
| + DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(XPathResult);
|
| public:
|
| enum XPathResultType {
|
| ANY_TYPE = 0,
|
| @@ -58,7 +59,6 @@ public:
|
| {
|
| return adoptRefWillBeNoop(new XPathResult(document, value));
|
| }
|
| - ~XPathResult();
|
|
|
| void convertTo(unsigned short type, ExceptionState&);
|
|
|
|
|