Index: tools/dom/templates/html/impl/impl_IDBDatabase.darttemplate |
diff --git a/tools/dom/templates/html/impl/impl_IDBDatabase.darttemplate b/tools/dom/templates/html/impl/impl_IDBDatabase.darttemplate |
index 8a74ad329f59974ad4963c7934f2ed06ffdff33a..3d396ef698399b472137bde13247fb6db1ebcd43 100644 |
--- a/tools/dom/templates/html/impl/impl_IDBDatabase.darttemplate |
+++ b/tools/dom/templates/html/impl/impl_IDBDatabase.darttemplate |
@@ -72,14 +72,14 @@ $else |
if (storeName_OR_storeNames == null) { |
throw new ArgumentError("stores may not be null in transaction"); |
} else if (storeName_OR_storeNames is String || storeName_OR_storeNames is DomStringList) { |
- names = unwrap_jso(storeName_OR_storeNames); |
+ names = storeName_OR_storeNames; |
} else if (storeName_OR_storeNames is List<String>) { |
names = convertDartToNative_List(storeName_OR_storeNames); |
} else { |
throw new ArgumentError("Invalid store(s) $store_Name_OR_storeNames"); |
} |
- return wrap_jso(_blink.BlinkIDBDatabase.instance.transaction_Callback_2_(unwrap_jso(this), names, mode)); |
+ return _blink.BlinkIDBDatabase.instance.transaction_Callback_2_(this, names, mode); |
} |
Transaction transactionList(List<String> storeNames, String mode) => transaction(storeNames, mode); |