| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.h
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.h b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.h
|
| index 27d9ae1f00fa2850263f5bc845b98ed1dc9e61be..040b4b3783ca6b294ee408b18a8bf61246def4c0 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.h
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.h
|
| @@ -64,15 +64,15 @@ public:
|
| }
|
| CORE_EXPORT static TestObject* toImplWithTypeCheck(v8::Isolate*, v8::Local<v8::Value>);
|
| CORE_EXPORT static const WrapperTypeInfo wrapperTypeInfo;
|
| - static HeapObjectHeader* getHeapObjectHeader(ScriptWrappable* scriptWrappable)
|
| - {
|
| - return HeapObjectHeader::fromPayload(scriptWrappable->toImpl<TestObject>());
|
| - }
|
| template<typename VisitorDispatcher>
|
| static void trace(VisitorDispatcher visitor, ScriptWrappable* scriptWrappable)
|
| {
|
| visitor->trace(scriptWrappable->toImpl<TestObject>());
|
| }
|
| + static void traceWrappers(WrapperVisitor* visitor, ScriptWrappable* scriptWrappable)
|
| + {
|
| + visitor->traceWrappers(scriptWrappable->toImpl<TestObject>());
|
| + }
|
| static void customVoidMethodMethodCustom(const v8::FunctionCallbackInfo<v8::Value>&);
|
| static void customCallPrologueVoidMethodMethodPrologueCustom(const v8::FunctionCallbackInfo<v8::Value>&, TestObject*);
|
| static void customCallEpilogueVoidMethodMethodEpilogueCustom(const v8::FunctionCallbackInfo<v8::Value>&, TestObject*);
|
|
|