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

Unified Diff: Source/bindings/modules/v8/custom/V8SQLResultSetRowListCustom.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/modules/v8/custom/V8SQLResultSetRowListCustom.cpp
diff --git a/Source/bindings/modules/v8/custom/V8SQLResultSetRowListCustom.cpp b/Source/bindings/modules/v8/custom/V8SQLResultSetRowListCustom.cpp
index f84f456f4c40ef75e97e6d89c96a756a1a77ad96..d450984b93c5dc924e971e5cc21ad01445e39057 100644
--- a/Source/bindings/modules/v8/custom/V8SQLResultSetRowListCustom.cpp
+++ b/Source/bindings/modules/v8/custom/V8SQLResultSetRowListCustom.cpp
@@ -54,7 +54,7 @@ void V8SQLResultSetRowList::itemMethodCustom(const v8::FunctionCallbackInfo<v8::
return;
}
- SQLResultSetRowList* rowList = V8SQLResultSetRowList::toNative(info.Holder());
+ SQLResultSetRowList* rowList = V8SQLResultSetRowList::toImpl(info.Holder());
unsigned long index = info[0]->IntegerValue();
if (index >= rowList->length()) {

Powered by Google App Engine
This is Rietveld 408576698