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

Unified Diff: client/html/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.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/_IDBKeyRangeWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart b/client/html/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
index da12e76eeecec19800d8ebd4b012cc594f018e91..2afd791a6c69424459539a7957ee3e125f6eff23 100644
--- a/client/html/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
@@ -15,7 +15,7 @@ class IDBKeyRangeWrappingImplementation extends DOMWrapperBase implements IDBKey
bool get upperOpen() { return _ptr.upperOpen; }
- IDBKeyRange bound(IDBKey lower, IDBKey upper, [bool lowerOpen = null, bool upperOpen = null]) {
+ IDBKeyRange bound(IDBKey lower, IDBKey upper, [bool lowerOpen, bool upperOpen]) {
if (lowerOpen === null) {
if (upperOpen === null) {
return LevelDom.wrapIDBKeyRange(_ptr.bound(LevelDom.unwrap(lower), LevelDom.unwrap(upper)));
@@ -30,7 +30,7 @@ class IDBKeyRangeWrappingImplementation extends DOMWrapperBase implements IDBKey
throw "Incorrect number or type of arguments";
}
- IDBKeyRange lowerBound(IDBKey bound, [bool open = null]) {
+ IDBKeyRange lowerBound(IDBKey bound, [bool open]) {
if (open === null) {
return LevelDom.wrapIDBKeyRange(_ptr.lowerBound(LevelDom.unwrap(bound)));
} else {
@@ -42,7 +42,7 @@ class IDBKeyRangeWrappingImplementation extends DOMWrapperBase implements IDBKey
return LevelDom.wrapIDBKeyRange(_ptr.only(LevelDom.unwrap(value)));
}
- IDBKeyRange upperBound(IDBKey bound, [bool open = null]) {
+ IDBKeyRange upperBound(IDBKey bound, [bool open]) {
if (open === null) {
return LevelDom.wrapIDBKeyRange(_ptr.upperBound(LevelDom.unwrap(bound)));
} else {

Powered by Google App Engine
This is Rietveld 408576698