| 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..3c44ae6ff947b476deec5024fe8de7e2ba82b42d 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappable.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappable.cpp
|
| @@ -35,4 +35,10 @@ v8::Local<v8::Object> ScriptWrappable::associateWithWrapper(v8::Isolate* isolate
|
| return V8DOMWrapper::associateObjectWithWrapper(isolate, this, wrapperTypeInfo, wrapper);
|
| }
|
|
|
| +void ScriptWrappable::markWrapper(v8::Isolate* isolate) const
|
| +{
|
| + if (containsWrapper())
|
| + ScriptWrappableVisitor::markWrapper(m_wrapper, isolate);
|
| +}
|
| +
|
| } // namespace blink
|
|
|