Index: Source/bindings/tests/results/V8TestCustomAccessors.h |
diff --git a/Source/bindings/tests/results/V8TestCustomAccessors.h b/Source/bindings/tests/results/V8TestCustomAccessors.h |
index 5c7f1d1161469a9b327e4bca83a56e45701ffbff..829db1419ef39570ee5c18ddd374de5961ac828e 100644 |
--- a/Source/bindings/tests/results/V8TestCustomAccessors.h |
+++ b/Source/bindings/tests/results/V8TestCustomAccessors.h |
@@ -39,14 +39,14 @@ public: |
} |
static void derefObject(void*); |
static WrapperTypeInfo info; |
- static v8::Handle<v8::Value> indexedPropertyGetter(uint32_t, const v8::AccessorInfo&); |
- static v8::Handle<v8::Value> indexedPropertySetter(uint32_t, v8::Local<v8::Value>, const v8::AccessorInfo&); |
- static v8::Handle<v8::Boolean> indexedPropertyDeleter(uint32_t, const v8::AccessorInfo&); |
- static v8::Handle<v8::Value> namedPropertyGetter(v8::Local<v8::String>, const v8::AccessorInfo&); |
- static v8::Handle<v8::Value> namedPropertySetter(v8::Local<v8::String>, v8::Local<v8::Value>, const v8::AccessorInfo&); |
- static v8::Handle<v8::Boolean> namedPropertyDeleter(v8::Local<v8::String>, const v8::AccessorInfo&); |
- static v8::Handle<v8::Array> namedPropertyEnumerator(const v8::AccessorInfo&); |
- static v8::Handle<v8::Integer> namedPropertyQuery(v8::Local<v8::String>, const v8::AccessorInfo&); |
+ static void indexedPropertyGetter(uint32_t, const v8::PropertyCallbackInfo<v8::Value>&); |
+ static void indexedPropertySetter(uint32_t, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<v8::Value>&); |
+ static void indexedPropertyDeleter(uint32_t, const v8::PropertyCallbackInfo<v8::Boolean>&); |
+ static void namedPropertyGetter(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>&); |
+ static void namedPropertySetter(v8::Local<v8::String>, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<v8::Value>&); |
+ static void namedPropertyDeleter(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Boolean>&); |
+ static void namedPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>&); |
+ static void namedPropertyQuery(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Integer>&); |
static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0; |
static void installPerContextProperties(v8::Handle<v8::Object>, TestCustomAccessors*, v8::Isolate*) { } |
static void installPerContextPrototypeProperties(v8::Handle<v8::Object>, v8::Isolate*) { } |