Commit aaa1cca3 authored by sigbjornf@opera.com's avatar sigbjornf@opera.com

Oilpan: fix build after r183972.

With Oilpan, ScriptWrappable has no destructor, so we need to provide
a virtual destructor for RefCounted<DOMArrayBufferView> instead.

TBR=oilpan-reviews,haraken
BUG=235436
NOTRY=true

Review URL: https://codereview.chromium.org/645993004

git-svn-id: svn://svn.chromium.org/blink/trunk@183976 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent b8905c62
......@@ -15,6 +15,8 @@ namespace blink {
class DOMArrayBufferView : public RefCounted<DOMArrayBufferView>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~DOMArrayBufferView() { }
PassRefPtr<DOMArrayBuffer> buffer() const
{
if (!m_domArrayBuffer)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment