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

Unified Diff: tests/dom/indexeddb_4_test.dart

Issue 10356016: Quick fix to placate checked mode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/dom/indexeddb_4_test.dart
diff --git a/tests/dom/indexeddb_4_test.dart b/tests/dom/indexeddb_4_test.dart
index ba2d2fdc3a1ac50368a335c9ab23e884187dd688..6132fa5abf176111349162580e7c0aab049bc440 100644
--- a/tests/dom/indexeddb_4_test.dart
+++ b/tests/dom/indexeddb_4_test.dart
@@ -59,8 +59,8 @@ class Test {
IDBObjectStore objectStore = txn.objectStore(STORE_NAME);
IDBRequest cursorRequest = objectStore.openCursor(range);
int itemCount = 0;
- int firstKey = null;
- int lastKey = null;
+ num firstKey = null;
+ num lastKey = null;
cursorRequest.addEventListener("success", (e) {
var cursor = e.target.result;
if (cursor != null) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698