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

Side by Side Diff: client/dom/generated/src/frog/Touch.dart

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 TouchJs extends DOMTypeJs implements Touch native "*Touch" { 2 class _TouchJs extends _DOMTypeJs 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 EventTargetJs 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 }
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