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

Unified Diff: Source/bindings/core/v8/V8Initializer.cpp

Issue 662633002: Oilpan: fix build after r183810. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8Initializer.cpp
diff --git a/Source/bindings/core/v8/V8Initializer.cpp b/Source/bindings/core/v8/V8Initializer.cpp
index 552f93ef7f021b4fa284135b312a91fe3a6cac7d..48430fd6fd8bcf7d64dc21be7d925cc2b5bc0a65 100644
--- a/Source/bindings/core/v8/V8Initializer.cpp
+++ b/Source/bindings/core/v8/V8Initializer.cpp
@@ -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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698