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

Unified Diff: Source/bindings/modules/v8/custom/V8SQLTransactionCustom.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/V8SQLTransactionCustom.cpp
diff --git a/Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp b/Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp
index 89c884a8fef95afd8894fa5ad96b85028b10a5d1..3d7b0bcbe4ac6f5dd788d34adbe3bbefbc1d7f65 100644
--- a/Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp
+++ b/Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp
@@ -90,7 +90,7 @@ void V8SQLTransaction::executeSqlMethodCustom(const v8::FunctionCallbackInfo<v8:
}
}
- SQLTransaction* transaction = V8SQLTransaction::toNative(info.Holder());
+ SQLTransaction* transaction = V8SQLTransaction::toImpl(info.Holder());
OwnPtrWillBeRawPtr<SQLStatementCallback> callback = nullptr;
if (info.Length() > 2 && !isUndefinedOrNull(info[2])) {
if (!info[2]->IsFunction()) {

Powered by Google App Engine
This is Rietveld 408576698