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

Unified Diff: client/dom/generated/src/frog/Event.dart

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x Created 8 years, 11 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
« no previous file with comments | « client/dom/generated/src/frog/ErrorEvent.dart ('k') | client/dom/generated/src/frog/EventException.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/Event.dart
diff --git a/client/dom/generated/src/frog/Event.dart b/client/dom/generated/src/frog/Event.dart
index 057793aacf95bcb569a0826ebf15be9d6bf613c4..ad8e4b0f2546da311a2caf3ae05285cfda87f91e 100644
--- a/client/dom/generated/src/frog/Event.dart
+++ b/client/dom/generated/src/frog/Event.dart
@@ -1,5 +1,5 @@
-class EventJS implements Event native "*Event" {
+class EventJs extends DOMTypeJs implements Event native "*Event" {
static final int AT_TARGET = 2;
@@ -47,9 +47,9 @@ class EventJS implements Event native "*Event" {
bool get cancelable() native "return this.cancelable;";
- ClipboardJS get clipboardData() native "return this.clipboardData;";
+ ClipboardJs get clipboardData() native "return this.clipboardData;";
- EventTargetJS get currentTarget() native "return this.currentTarget;";
+ EventTargetJs get currentTarget() native "return this.currentTarget;";
bool get defaultPrevented() native "return this.defaultPrevented;";
@@ -59,9 +59,9 @@ class EventJS implements Event native "*Event" {
void set returnValue(bool value) native "this.returnValue = value;";
- EventTargetJS get srcElement() native "return this.srcElement;";
+ EventTargetJs get srcElement() native "return this.srcElement;";
- EventTargetJS get target() native "return this.target;";
+ EventTargetJs get target() native "return this.target;";
int get timeStamp() native "return this.timeStamp;";
@@ -74,8 +74,4 @@ class EventJS implements Event native "*Event" {
void stopImmediatePropagation() native;
void stopPropagation() native;
-
- var dartObjectLocalStorage;
-
- String get typeName() native;
}
« no previous file with comments | « client/dom/generated/src/frog/ErrorEvent.dart ('k') | client/dom/generated/src/frog/EventException.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698