| Index: webkit/port/bindings/v8/v8_custom.cpp
|
| ===================================================================
|
| --- webkit/port/bindings/v8/v8_custom.cpp (revision 8058)
|
| +++ webkit/port/bindings/v8/v8_custom.cpp (working copy)
|
| @@ -140,18 +140,6 @@
|
| v8::Handle<v8::Boolean> V8Custom::v8##NAME##NamedPropertyDeleter(\
|
| v8::Local<v8::String> name, const v8::AccessorInfo& info)
|
|
|
| -#define INDEXED_PROPERTY_GETTER(NAME) \
|
| -v8::Handle<v8::Value> V8Custom::v8##NAME##IndexedPropertyGetter(\
|
| - uint32_t index, const v8::AccessorInfo& info)
|
| -
|
| -#define INDEXED_PROPERTY_SETTER(NAME) \
|
| -v8::Handle<v8::Value> V8Custom::v8##NAME##IndexedPropertySetter(\
|
| - uint32_t index, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
|
| -
|
| -#define INDEXED_PROPERTY_DELETER(NAME) \
|
| -v8::Handle<v8::Boolean> V8Custom::v8##NAME##IndexedPropertyDeleter(\
|
| - uint32_t index, const v8::AccessorInfo& info)
|
| -
|
| #define NAMED_ACCESS_CHECK(NAME) \
|
| bool V8Custom::v8##NAME##NamedSecurityCheck(v8::Local<v8::Object> host, \
|
| v8::Local<v8::Value> key, \
|
| @@ -686,6 +674,7 @@
|
| return HTMLCollectionGetNamedItems(imp, key);
|
| }
|
|
|
| +
|
| CALLBACK_FUNC_DECL(HTMLCollectionItem) {
|
| INC_STATS("DOM.HTMLCollection.item()");
|
| HTMLCollection* imp = V8Proxy::ToNativeObject<HTMLCollection>(
|
| @@ -3465,8 +3454,6 @@
|
| #undef NAMED_ACCESS_CHECK
|
| #undef NAMED_PROPERTY_GETTER
|
| #undef NAMED_PROPERTY_SETTER
|
| -#undef INDEXED_PROPERTY_GETTER
|
| -#undef INDEXED_PROPERTY_SETTER
|
|
|
|
|
| // static
|
|
|