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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 c96a9568148402f1d4c926b6216d86a4f6b46b92..6de4c454f1d28c211e9dd22a2fe9d394c9f1adc8 100644
--- a/client/dom/generated/src/frog/Event.dart
+++ b/client/dom/generated/src/frog/Event.dart
@@ -39,29 +39,33 @@ class Event native "*Event" {
static final int SELECT = 16384;
- bool bubbles;
+ bool get bubbles() native "return this.bubbles;";
- bool cancelBubble;
+ bool get cancelBubble() native "return this.cancelBubble;";
- bool cancelable;
+ void set cancelBubble(bool value) native "this.cancelBubble = value;";
- Clipboard clipboardData;
+ bool get cancelable() native "return this.cancelable;";
- EventTarget currentTarget;
+ Clipboard get clipboardData() native "return this.clipboardData;";
- bool defaultPrevented;
+ EventTarget get currentTarget() native "return this.currentTarget;";
- int eventPhase;
+ bool get defaultPrevented() native "return this.defaultPrevented;";
- bool returnValue;
+ int get eventPhase() native "return this.eventPhase;";
- EventTarget srcElement;
+ bool get returnValue() native "return this.returnValue;";
- EventTarget target;
+ void set returnValue(bool value) native "this.returnValue = value;";
- int timeStamp;
+ EventTarget get srcElement() native "return this.srcElement;";
- String type;
+ EventTarget get target() native "return this.target;";
+
+ int get timeStamp() native "return this.timeStamp;";
+
+ String get type() native "return this.type;";
void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg) 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