| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
|
| index 6e713e1da2253944504eb81d76cfeff02848e5b2..28bd763ddb4e1174f6ff179bf11e1342e5b5c83d 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
|
| @@ -2967,10 +2967,18 @@ void V8TestInterface::preparePrototypeAndInterfaceObject(v8::Local<v8::Context>
|
|
|
| InstallTemplateFunction V8TestInterface::installV8TestInterfaceTemplateFunction = (InstallTemplateFunction)&V8TestInterface::installV8TestInterfaceTemplate;
|
|
|
| -void V8TestInterface::updateWrapperTypeInfo(InstallTemplateFunction installTemplateFunction, PreparePrototypeAndInterfaceObjectFunction preparePrototypeAndInterfaceObjectFunction) {
|
| - V8TestInterface::installV8TestInterfaceTemplateFunction = installTemplateFunction;
|
| - if (preparePrototypeAndInterfaceObjectFunction)
|
| - V8TestInterface::wrapperTypeInfo.preparePrototypeAndInterfaceObjectFunction = preparePrototypeAndInterfaceObjectFunction;
|
| +void V8TestInterface::updateWrapperTypeInfo(
|
| + InstallTemplateFunction installTemplateFunction,
|
| + InstallRuntimeEnabledFunction installRuntimeEnabledFunction,
|
| + PreparePrototypeAndInterfaceObjectFunction preparePrototypeAndInterfaceObjectFunction) {
|
| + ALLOW_UNUSED_LOCAL(installRuntimeEnabledFunction);
|
| +
|
| + V8TestInterface::installV8TestInterfaceTemplateFunction =
|
| + installTemplateFunction;
|
| + if (preparePrototypeAndInterfaceObjectFunction) {
|
| + V8TestInterface::wrapperTypeInfo.preparePrototypeAndInterfaceObjectFunction =
|
| + preparePrototypeAndInterfaceObjectFunction;
|
| + }
|
| }
|
|
|
| void V8TestInterface::registerVoidMethodPartialOverloadMethodForPartialInterface(void (*method)(const v8::FunctionCallbackInfo<v8::Value>&)) {
|
|
|