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

Unified Diff: lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate

Issue 10957003: Fixing samples/swarm test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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
Index: lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate
diff --git a/lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate b/lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate
index f704324d0561c21f3ae195fd7fcb5332ca632b3d..4b3e68f1f103a8ea30203170b336dfaf87d1ef0c 100644
--- a/lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate
+++ b/lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate
@@ -16,20 +16,20 @@ abstract class $ID$EXTENDS {
/**
* @domName IDBKeyRange.lowerBound
*/
- factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open]) =>
+ factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open = false]) =>
_IDBKeyRangeFactoryProvider.create$(ID)_lowerBound(bound, open);
/**
* @domName IDBKeyRange.upperBound
*/
- factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open]) =>
+ factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open = false]) =>
_IDBKeyRangeFactoryProvider.create$(ID)_upperBound(bound, open);
/**
* @domName IDBKeyRange.bound
*/
factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper,
- [bool lowerOpen, bool upperOpen]) =>
+ [bool lowerOpen = false, bool upperOpen = false]) =>
_IDBKeyRangeFactoryProvider.create$(ID)_bound(
lower, upper, lowerOpen, upperOpen);
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/templates/html/interface/interface_MouseEvent.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698