| Index: Source/bindings/core/v8/V8DOMConfiguration.cpp
|
| diff --git a/Source/bindings/core/v8/V8DOMConfiguration.cpp b/Source/bindings/core/v8/V8DOMConfiguration.cpp
|
| index 97fab3949b8edd5c9bd4b1ad5e98454478d0dfda..6fb9b692ce6d80d912174696b8f29485bcd1b581 100644
|
| --- a/Source/bindings/core/v8/V8DOMConfiguration.cpp
|
| +++ b/Source/bindings/core/v8/V8DOMConfiguration.cpp
|
| @@ -43,8 +43,8 @@ void installAttributeInternal(v8::Isolate* isolate, v8::Handle<ObjectOrTemplate>
|
| && !world.isPrivateScriptIsolatedWorld())
|
| return;
|
|
|
| - v8::AccessorGetterCallback getter = attribute.getter;
|
| - v8::AccessorSetterCallback setter = attribute.setter;
|
| + v8::AccessorNameGetterCallback getter = attribute.getter;
|
| + v8::AccessorNameSetterCallback setter = attribute.setter;
|
| if (world.isMainWorld()) {
|
| if (attribute.getterForMainWorld)
|
| getter = attribute.getterForMainWorld;
|
| @@ -205,7 +205,7 @@ void V8DOMConfiguration::installConstant(v8::Isolate* isolate, v8::Handle<v8::Fu
|
| installConstantInternal(isolate, functionDescriptor, prototypeTemplate, constant);
|
| }
|
|
|
| -void V8DOMConfiguration::installConstantWithGetter(v8::Isolate* isolate, v8::Handle<v8::FunctionTemplate> functionDescriptor, v8::Handle<v8::ObjectTemplate> prototypeTemplate, const char* name, v8::AccessorGetterCallback getter)
|
| +void V8DOMConfiguration::installConstantWithGetter(v8::Isolate* isolate, v8::Handle<v8::FunctionTemplate> functionDescriptor, v8::Handle<v8::ObjectTemplate> prototypeTemplate, const char* name, v8::AccessorNameGetterCallback getter)
|
| {
|
| v8::Handle<v8::String> constantName = v8AtomicString(isolate, name);
|
| v8::PropertyAttribute attributes =
|
|
|