| Index: Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp b/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp
|
| index 9d73a3f573b48f0a8a54c61b68bbb88c856e81fb..4db5f1ba6a09732fbeeb3f4647353b00477b5fd7 100644
|
| --- a/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp
|
| @@ -77,8 +77,8 @@ static v8::Handle<v8::Value> getItem(HTMLAllCollection* collection, v8::Handle<v
|
|
|
| void V8HTMLAllCollection::itemMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| - HTMLAllCollection* imp = V8HTMLAllCollection::toNative(info.Holder());
|
| - v8SetReturnValue(info, getItem(imp, info[0], info));
|
| + HTMLAllCollection* impl = V8HTMLAllCollection::toNative(info.Holder());
|
| + v8SetReturnValue(info, getItem(impl, info[0], info));
|
| }
|
|
|
| void V8HTMLAllCollection::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| @@ -86,13 +86,13 @@ void V8HTMLAllCollection::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Va
|
| if (info.Length() < 1)
|
| return;
|
|
|
| - HTMLAllCollection* imp = V8HTMLAllCollection::toNative(info.Holder());
|
| - Node& ownerNode = imp->ownerNode();
|
| + HTMLAllCollection* impl = V8HTMLAllCollection::toNative(info.Holder());
|
| + Node& ownerNode = impl->ownerNode();
|
|
|
| UseCounter::count(ownerNode.document(), UseCounter::DocumentAllLegacyCall);
|
|
|
| if (info.Length() == 1) {
|
| - v8SetReturnValue(info, getItem(imp, info[0], info));
|
| + v8SetReturnValue(info, getItem(impl, info[0], info));
|
| return;
|
| }
|
|
|
| @@ -102,8 +102,8 @@ void V8HTMLAllCollection::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Va
|
| if (index.IsEmpty())
|
| return;
|
|
|
| - if (Node* node = imp->namedItemWithIndex(name, index->Uint32Value())) {
|
| - v8SetReturnValueFast(info, node, imp);
|
| + if (Node* node = impl->namedItemWithIndex(name, index->Uint32Value())) {
|
| + v8SetReturnValueFast(info, node, impl);
|
| return;
|
| }
|
| }
|
|
|