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

Unified Diff: sdk/lib/html/templates/html/dart2js/impl_KeyboardEvent.darttemplate

Issue 11642035: Renaming Window to WindowBase and LocalWindow to Window. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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: sdk/lib/html/templates/html/dart2js/impl_KeyboardEvent.darttemplate
diff --git a/sdk/lib/html/templates/html/dart2js/impl_KeyboardEvent.darttemplate b/sdk/lib/html/templates/html/dart2js/impl_KeyboardEvent.darttemplate
index 4a555d9053e613cfa849363e56ca066c72fb70f5..d6213e4ffd94599c213ef685fc34dcb50ef90aed 100644
--- a/sdk/lib/html/templates/html/dart2js/impl_KeyboardEvent.darttemplate
+++ b/sdk/lib/html/templates/html/dart2js/impl_KeyboardEvent.darttemplate
@@ -7,7 +7,7 @@
class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
factory $CLASSNAME(String type, Window view,
- [bool canBubble = true, bool cancelable = true,
+ [bool canBubble = true, bool cancelable = true,
String keyIdentifier = "", int keyLocation = 1, bool ctrlKey = false,
bool altKey = false, bool shiftKey = false, bool metaKey = false,
bool altGraphKey = false]) {
@@ -19,7 +19,7 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
/** @domName KeyboardEvent.initKeyboardEvent */
void $dom_initKeyboardEvent(String type, bool canBubble, bool cancelable,
- LocalWindow view, String keyIdentifier, int keyLocation, bool ctrlKey,
+ Window view, String keyIdentifier, int keyLocation, bool ctrlKey,
bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) {
if (JS('bool', 'typeof(#.initKeyEvent) == "function"', this)) {
// initKeyEvent is only in Firefox (instead of initKeyboardEvent). It has
@@ -27,7 +27,7 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
// charCode as the last two arguments, but we just set them as the default
// since they can't be specified in other browsers.
JS('void', '#.initKeyEvent(#, #, #, #, #, #, #, #, 0, 0)', this,
- type, canBubble, cancelable, view,
+ type, canBubble, cancelable, view,
ctrlKey, altKey, shiftKey, metaKey);
} else {
// initKeyboardEvent is for all other browsers.

Powered by Google App Engine
This is Rietveld 408576698