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