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

Side by Side Diff: client/dom/generated/src/frog/Touch.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class Touch native "*Touch" { 2 class TouchJS implements Touch native "*Touch" {
3 3
4 int get clientX() native "return this.clientX;"; 4 int get clientX() native "return this.clientX;";
5 5
6 int get clientY() native "return this.clientY;"; 6 int get clientY() native "return this.clientY;";
7 7
8 int get identifier() native "return this.identifier;"; 8 int get identifier() native "return this.identifier;";
9 9
10 int get pageX() native "return this.pageX;"; 10 int get pageX() native "return this.pageX;";
11 11
12 int get pageY() native "return this.pageY;"; 12 int get pageY() native "return this.pageY;";
13 13
14 int get screenX() native "return this.screenX;"; 14 int get screenX() native "return this.screenX;";
15 15
16 int get screenY() native "return this.screenY;"; 16 int get screenY() native "return this.screenY;";
17 17
18 EventTarget get target() native "return this.target;"; 18 EventTargetJS get target() native "return this.target;";
19 19
20 num get webkitForce() native "return this.webkitForce;"; 20 num get webkitForce() native "return this.webkitForce;";
21 21
22 int get webkitRadiusX() native "return this.webkitRadiusX;"; 22 int get webkitRadiusX() native "return this.webkitRadiusX;";
23 23
24 int get webkitRadiusY() native "return this.webkitRadiusY;"; 24 int get webkitRadiusY() native "return this.webkitRadiusY;";
25 25
26 num get webkitRotationAngle() native "return this.webkitRotationAngle;"; 26 num get webkitRotationAngle() native "return this.webkitRotationAngle;";
27 27
28 var dartObjectLocalStorage; 28 var dartObjectLocalStorage;
29 29
30 String get typeName() native; 30 String get typeName() native;
31 } 31 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/TimeRanges.dart ('k') | client/dom/generated/src/frog/TouchEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698