Index: Source/bindings/v8/V8DOMConfiguration.h |
diff --git a/Source/bindings/v8/V8DOMConfiguration.h b/Source/bindings/v8/V8DOMConfiguration.h |
index 18a2e3bf0d561eabee4c196a06edd0be13e05d51..baa2cf6b1bf694f4546bb9d757c7443c0703843e 100644 |
--- a/Source/bindings/v8/V8DOMConfiguration.h |
+++ b/Source/bindings/v8/V8DOMConfiguration.h |
@@ -75,11 +75,11 @@ public: |
static inline void installAttribute(v8::Handle<ObjectOrTemplate> instanceTemplate, v8::Handle<ObjectOrTemplate> prototype, const AttributeConfiguration& attribute, v8::Isolate* isolate) |
{ |
(attribute.onPrototype ? prototype : instanceTemplate)->SetAccessor(v8::String::NewFromUtf8(isolate, attribute.name, v8::String::kInternalizedString), |
- attribute.getter, |
- attribute.setter, |
- v8::External::New(isolate, const_cast<WrapperTypeInfo*>(attribute.data)), |
- attribute.settings, |
- attribute.attribute); |
+ attribute.getter, |
+ attribute.setter, |
+ v8::External::New(isolate, const_cast<WrapperTypeInfo*>(attribute.data)), |
+ attribute.settings, |
+ attribute.attribute); |
} |
template<class ObjectOrTemplate> |