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

Unified Diff: sdk/lib/html/src/dartium_KeyEvent.dart

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/src/dartium_KeyEvent.dart
diff --git a/sdk/lib/html/src/dartium_KeyEvent.dart b/sdk/lib/html/src/dartium_KeyEvent.dart
index eeddc021de684a53388686d52fbd3ff4517dcf27..c610b8e9651440177885f689fa46faa6b12de30e 100644
--- a/sdk/lib/html/src/dartium_KeyEvent.dart
+++ b/sdk/lib/html/src/dartium_KeyEvent.dart
@@ -96,7 +96,7 @@ class KeyEvent implements KeyboardEvent {
void stopImmediatePropagation() => _parent.stopImmediatePropagation();
void stopPropagation() => _parent.stopPropagation();
void $dom_initUIEvent(String type, bool canBubble, bool cancelable,
- LocalWindow view, int detail) {
+ Window view, int detail) {
throw new UnsupportedError("Cannot initialize a UI Event from a KeyEvent.");
}
void $dom_initEvent(String eventTypeArg, bool canBubbleArg,
@@ -112,7 +112,7 @@ class KeyEvent implements KeyboardEvent {
throw new UnsupportedError("keyIdentifier is unsupported.");
}
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) {
throw new UnsupportedError(

Powered by Google App Engine
This is Rietveld 408576698