Commit 927ca9a2 authored by sigbjornf@opera.com's avatar sigbjornf@opera.com

Oilpan: fix build after r183810.

R=haraken
BUG=393913
NOTRY=true

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

git-svn-id: svn://svn.chromium.org/blink/trunk@183814 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent a61e54fa
......@@ -161,6 +161,7 @@ static void messageHandlerInMainThread(v8::Handle<v8::Message> message, v8::Hand
namespace {
class PromiseRejectMessage {
ALLOW_ONLY_INLINE_ALLOCATION();
public:
PromiseRejectMessage(const ScriptValue& promise, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack)
: m_promise(promise)
......@@ -170,6 +171,11 @@ public:
const ScriptValue m_promise;
const RefPtrWillBeMember<ScriptCallStack> m_callStack;
void trace(Visitor* visitor)
{
visitor->trace(m_callStack);
}
};
} // namespace
......
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