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

Unified Diff: client/html/generated/src/wrapping/_IDBIndexWrappingImplementation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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: client/html/generated/src/wrapping/_IDBIndexWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_IDBIndexWrappingImplementation.dart b/client/html/generated/src/wrapping/_IDBIndexWrappingImplementation.dart
index aeb1004cdf279d7ee8373e312bc4c71df927c0db..537a5ff896a6515114f23660ded40ce39ddf9573 100644
--- a/client/html/generated/src/wrapping/_IDBIndexWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_IDBIndexWrappingImplementation.dart
@@ -23,7 +23,7 @@ class IDBIndexWrappingImplementation extends DOMWrapperBase implements IDBIndex
return LevelDom.wrapIDBRequest(_ptr.getKey(LevelDom.unwrap(key)));
}
- IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) {
+ IDBRequest openCursor([IDBKeyRange range, int direction]) {
if (range === null) {
if (direction === null) {
return LevelDom.wrapIDBRequest(_ptr.openCursor());
@@ -38,7 +38,7 @@ class IDBIndexWrappingImplementation extends DOMWrapperBase implements IDBIndex
throw "Incorrect number or type of arguments";
}
- IDBRequest openKeyCursor([IDBKeyRange range = null, int direction = null]) {
+ IDBRequest openKeyCursor([IDBKeyRange range, int direction]) {
if (range === null) {
if (direction === null) {
return LevelDom.wrapIDBRequest(_ptr.openKeyCursor());

Powered by Google App Engine
This is Rietveld 408576698