Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Unified Diff: Source/bindings/core/v8/custom/V8HTMLAllCollectionCustom.cpp

Issue 537403002: bindings: Renames from/toInternalPointer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/core/v8/custom/V8HTMLAllCollectionCustom.cpp
diff --git a/Source/bindings/core/v8/custom/V8HTMLAllCollectionCustom.cpp b/Source/bindings/core/v8/custom/V8HTMLAllCollectionCustom.cpp
index cc6899f7753ee224362de8fb75f809bde47b1e54..16f6044a9c2a7ccd277e375e03f6671b94745fbf 100644
--- a/Source/bindings/core/v8/custom/V8HTMLAllCollectionCustom.cpp
+++ b/Source/bindings/core/v8/custom/V8HTMLAllCollectionCustom.cpp
@@ -86,7 +86,7 @@ static v8::Handle<v8::Value> getItem(HTMLAllCollection* collection, v8::Handle<v
void V8HTMLAllCollection::itemMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
- HTMLAllCollection* impl = V8HTMLAllCollection::toNative(info.Holder());
+ HTMLAllCollection* impl = V8HTMLAllCollection::toImpl(info.Holder());
v8SetReturnValue(info, getItem(impl, info[0], info));
}
@@ -95,7 +95,7 @@ void V8HTMLAllCollection::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Va
if (info.Length() < 1)
return;
- HTMLAllCollection* impl = V8HTMLAllCollection::toNative(info.Holder());
+ HTMLAllCollection* impl = V8HTMLAllCollection::toImpl(info.Holder());
Node& ownerNode = impl->ownerNode();
UseCounter::count(ownerNode.document(), UseCounter::DocumentAllLegacyCall);
« no previous file with comments | « Source/bindings/core/v8/custom/V8FileReaderCustom.cpp ('k') | Source/bindings/core/v8/custom/V8HTMLCanvasElementCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698