| 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 6fc8062bc7fb2554d448a2a1a99aaf59f760dd22..d285470bd8222b7e257d7b3678cbac1c2e39d8c4 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
|
| @@ -2996,7 +2996,10 @@ static const V8DOMConfiguration::MethodConfiguration V8TestInterfaceMethods[] =
|
| {"toString", V8TestInterface::toStringMethodCallback, 0, static_cast<v8::PropertyAttribute>(v8::DontEnum), V8DOMConfiguration::kOnPrototype, V8DOMConfiguration::kCheckHolder, V8DOMConfiguration::kDoNotCheckAccess, V8DOMConfiguration::kAllWorlds},
|
| };
|
|
|
| -void V8TestInterface::installV8TestInterfaceTemplate(v8::Isolate* isolate, const DOMWrapperWorld& world, v8::Local<v8::FunctionTemplate> interfaceTemplate) {
|
| +void V8TestInterface::installV8TestInterfaceTemplate(
|
| + v8::Isolate* isolate,
|
| + const DOMWrapperWorld& world,
|
| + v8::Local<v8::FunctionTemplate> interfaceTemplate) {
|
| // Initialize the interface object's template.
|
| V8DOMConfiguration::InitializeDOMInterfaceTemplate(isolate, interfaceTemplate, V8TestInterface::wrapperTypeInfo.interface_name, V8TestInterfaceEmpty::domTemplate(isolate, world), V8TestInterface::internalFieldCount);
|
|
|
| @@ -3007,7 +3010,7 @@ void V8TestInterface::installV8TestInterfaceTemplate(v8::Isolate* isolate, const
|
| v8::Local<v8::ObjectTemplate> prototypeTemplate = interfaceTemplate->PrototypeTemplate();
|
| ALLOW_UNUSED_LOCAL(prototypeTemplate);
|
|
|
| - // Register DOM constants, attributes and operations.
|
| + // Register IDL constants, attributes and operations.
|
| const V8DOMConfiguration::ConstantConfiguration V8TestInterfaceConstants[] = {
|
| {"UNSIGNED_LONG", 0, 0, V8DOMConfiguration::kConstantTypeUnsignedLong},
|
| {"CONST_JAVASCRIPT", 1, 0, V8DOMConfiguration::kConstantTypeShort},
|
| @@ -3478,6 +3481,7 @@ InstallTemplateFunction V8TestInterface::installV8TestInterfaceTemplateFunction
|
| void V8TestInterface::updateWrapperTypeInfo(
|
| InstallTemplateFunction installTemplateFunction,
|
| InstallRuntimeEnabledFunction installRuntimeEnabledFunction,
|
| + InstallRuntimeEnabledOnTemplateFunction installRuntimeEnabledOnTemplateFunction,
|
| PreparePrototypeAndInterfaceObjectFunction preparePrototypeAndInterfaceObjectFunction) {
|
| ALLOW_UNUSED_LOCAL(installRuntimeEnabledFunction);
|
|
|
|
|