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

Unified Diff: lib/html/templates/html/interface/interface_MouseEvent.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_MouseEvent.darttemplate
diff --git a/lib/html/templates/html/interface/interface_MouseEvent.darttemplate b/lib/html/templates/html/interface/interface_MouseEvent.darttemplate
index e5629e3f14c618320a7ab1c96d5b4cb67f1e343b..28dff37cf6b683ac9e5b545da6dba331c51d1ea4 100644
--- a/lib/html/templates/html/interface/interface_MouseEvent.darttemplate
+++ b/lib/html/templates/html/interface/interface_MouseEvent.darttemplate
@@ -8,9 +8,10 @@ $!COMMENT
abstract class $ID$EXTENDS {
factory $ID(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]) =>
_$(ID)FactoryProvider.create$ID(
type, view, detail, screenX, screenY,
clientX, clientY, button, canBubble, cancelable,
« no previous file with comments | « lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate ('k') | samples/tests/samples/samples.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698