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

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

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 6de4c454f1d28c211e9dd22a2fe9d394c9f1adc8..057793aacf95bcb569a0826ebf15be9d6bf613c4 100644
--- a/client/dom/generated/src/frog/Event.dart
+++ b/client/dom/generated/src/frog/Event.dart
@@ -1,5 +1,5 @@
-class Event native "*Event" {
+class EventJS implements Event native "*Event" {
static final int AT_TARGET = 2;
@@ -47,9 +47,9 @@ class Event native "*Event" {
bool get cancelable() native "return this.cancelable;";
- Clipboard get clipboardData() native "return this.clipboardData;";
+ ClipboardJS get clipboardData() native "return this.clipboardData;";
- EventTarget 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 Event native "*Event" {
void set returnValue(bool value) native "this.returnValue = value;";
- EventTarget get srcElement() native "return this.srcElement;";
+ EventTargetJS get srcElement() native "return this.srcElement;";
- EventTarget get target() native "return this.target;";
+ EventTargetJS get target() native "return this.target;";
int get timeStamp() native "return this.timeStamp;";
« 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