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

Unified Diff: tests/html/indexeddb_4_test.dart

Issue 16494002: Expand overloaded methods and optional parameters in the html library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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
« no previous file with comments | « tests/html/indexeddb_3_test.dart ('k') | tests/html/indexeddb_5_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/indexeddb_4_test.dart
diff --git a/tests/html/indexeddb_4_test.dart b/tests/html/indexeddb_4_test.dart
index 7ae6014c9d1c93f4ce851b1ea891daadf9c8bc23..06a4a0bf7034e90ac33adf2b148f8023719ed554 100644
--- a/tests/html/indexeddb_4_test.dart
+++ b/tests/html/indexeddb_4_test.dart
@@ -23,7 +23,7 @@ Future<Database> createAndOpenDb() {
Future<Database> writeItems(Database db) {
Future<Object> write(index) {
- var transaction = db.transaction([STORE_NAME], 'readwrite');
+ var transaction = db.transaction(STORE_NAME, 'readwrite');
return transaction.objectStore(STORE_NAME).put(
{'content': 'Item $index'}, index);
}
« no previous file with comments | « tests/html/indexeddb_3_test.dart ('k') | tests/html/indexeddb_5_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698