Index: Source/bindings/core/v8/V8DOMConfiguration.cpp |
diff --git a/Source/bindings/core/v8/V8DOMConfiguration.cpp b/Source/bindings/core/v8/V8DOMConfiguration.cpp |
index b15b9869d3633a94af91e4294075c2b384efa07d..f7497b56e3472123f0af065a047708ceee1df611 100644 |
--- a/Source/bindings/core/v8/V8DOMConfiguration.cpp |
+++ b/Source/bindings/core/v8/V8DOMConfiguration.cpp |
@@ -101,6 +101,13 @@ void V8DOMConfiguration::installConstants(v8::Handle<v8::FunctionTemplate> funct |
} |
} |
+void V8DOMConfiguration::installConstant(v8::Handle<v8::FunctionTemplate> functionDescriptor, v8::Handle<v8::ObjectTemplate> prototype, const char* name, v8::AccessorGetterCallback getter, v8::Isolate* isolate) |
+{ |
+ v8::Handle<v8::String> constantName = v8AtomicString(isolate, name); |
+ functionDescriptor->SetAccessor(constantName, getter, 0, v8::Handle<v8::Value>(), v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete)); |
Jens Widell
2014/09/18 16:34:10
This line doesn't compile: there is no v8::Functio
|
+ prototype->SetAccessor(constantName, getter, 0, v8::Handle<v8::Value>(), v8::DEFAULT, static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete)); |
+} |
+ |
void V8DOMConfiguration::installMethods(v8::Handle<v8::ObjectTemplate> prototype, v8::Handle<v8::Signature> signature, v8::PropertyAttribute attributes, const MethodConfiguration* callbacks, size_t callbackCount, v8::Isolate* isolate) |
{ |
for (size_t i = 0; i < callbackCount; ++i) |