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

Unified Diff: lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
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:
Download patch
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index 5a177066a34c4b05ab77b21fd774db34a1e9c44a..6bbd66146bbfa16491091bba494a7e3e364e96a9 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -17845,20 +17845,20 @@ abstract class IDBKeyRange {
/**
* @domName IDBKeyRange.lowerBound
*/
- factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open]) =>
+ factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open = false]) =>
_IDBKeyRangeFactoryProvider.createIDBKeyRange_lowerBound(bound, open);
/**
* @domName IDBKeyRange.upperBound
*/
- factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open]) =>
+ factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open = false]) =>
_IDBKeyRangeFactoryProvider.createIDBKeyRange_upperBound(bound, open);
/**
* @domName IDBKeyRange.bound
*/
factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper,
- [bool lowerOpen, bool upperOpen]) =>
+ [bool lowerOpen = false, bool upperOpen = false]) =>
_IDBKeyRangeFactoryProvider.createIDBKeyRange_bound(
lower, upper, lowerOpen, upperOpen);
@@ -22125,9 +22125,10 @@ class _HTMLModElementImpl extends _HTMLElementImpl implements ModElement {
abstract class MouseEvent implements UIEvent {
factory MouseEvent(String type, Window view, int detail, int screenX, int screenY,
- int clientX, int clientY, int button, [bool canBubble, bool cancelable,
- bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
- EventTarget relatedTarget]) =>
+ int clientX, int clientY, int button, [bool canBubble = true,
+ bool cancelable = true, bool ctrlKey = false, bool altKey = false,
+ bool shiftKey = false, bool metaKey = false,
+ EventTarget relatedTarget = null]) =>
_MouseEventFactoryProvider.createMouseEvent(
type, view, detail, screenX, screenY,
clientX, clientY, button, canBubble, cancelable,
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698