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

Unified Diff: Source/bindings/modules/v8/custom/V8SQLTransactionSyncCustom.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/V8SQLTransactionSyncCustom.cpp
diff --git a/Source/bindings/modules/v8/custom/V8SQLTransactionSyncCustom.cpp b/Source/bindings/modules/v8/custom/V8SQLTransactionSyncCustom.cpp
index c7a64b267c907a6a33d19fa7d00371ce9eb12654..75f043ce497fb26f0622ded9cf9448043f69c38e 100644
--- a/Source/bindings/modules/v8/custom/V8SQLTransactionSyncCustom.cpp
+++ b/Source/bindings/modules/v8/custom/V8SQLTransactionSyncCustom.cpp
@@ -89,7 +89,7 @@ void V8SQLTransactionSync::executeSqlMethodCustom(const v8::FunctionCallbackInfo
}
}
- SQLTransactionSync* transaction = V8SQLTransactionSync::toNative(info.Holder());
+ SQLTransactionSync* transaction = V8SQLTransactionSync::toImpl(info.Holder());
v8::Handle<v8::Value> result = toV8(transaction->executeSQL(statement, sqlValues, exceptionState), info.Holder(), info.GetIsolate());
if (exceptionState.throwIfNeeded())

Powered by Google App Engine
This is Rietveld 408576698