| Index: third_party/WebKit/Source/bindings/core/v8/ScriptWrappable.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappable.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappable.cpp
|
| index 3534a4ebfb5d2b1cd83854203e91f08945483b90..b9d099c7fdcd4da6508f216e1d0006fa609ce22f 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappable.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappable.cpp
|
| @@ -35,4 +35,11 @@ v8::Local<v8::Object> ScriptWrappable::associateWithWrapper(v8::Isolate* isolate
|
| return V8DOMWrapper::associateObjectWithWrapper(isolate, this, wrapperTypeInfo, wrapper);
|
| }
|
|
|
| +DEFINE_TRACE_WRAPPABLE(ScriptWrappable);
|
| +
|
| +void ScriptWrappable::markWrapperAlive(const v8::Persistent<v8::Object>& handle, v8::Isolate* isolate)
|
| +{
|
| + handle.RegisterExternalReference(isolate);
|
| +}
|
| +
|
| } // namespace blink
|
|
|