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

Side by Side Diff: client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class _TouchWrappingImplementation extends DOMWrapperBase implements Touch {
8 _TouchWrappingImplementation() : super() {}
9
10 static create__TouchWrappingImplementation() native {
11 return new _TouchWrappingImplementation();
12 }
13
14 int get clientX() { return _get_clientX(this); }
15 static int _get_clientX(var _this) native;
16
17 int get clientY() { return _get_clientY(this); }
18 static int _get_clientY(var _this) native;
19
20 int get identifier() { return _get_identifier(this); }
21 static int _get_identifier(var _this) native;
22
23 int get pageX() { return _get_pageX(this); }
24 static int _get_pageX(var _this) native;
25
26 int get pageY() { return _get_pageY(this); }
27 static int _get_pageY(var _this) native;
28
29 int get screenX() { return _get_screenX(this); }
30 static int _get_screenX(var _this) native;
31
32 int get screenY() { return _get_screenY(this); }
33 static int _get_screenY(var _this) native;
34
35 EventTarget get target() { return _get_target(this); }
36 static EventTarget _get_target(var _this) native;
37
38 num get webkitForce() { return _get_webkitForce(this); }
39 static num _get_webkitForce(var _this) native;
40
41 int get webkitRadiusX() { return _get_webkitRadiusX(this); }
42 static int _get_webkitRadiusX(var _this) native;
43
44 int get webkitRadiusY() { return _get_webkitRadiusY(this); }
45 static int _get_webkitRadiusY(var _this) native;
46
47 num get webkitRotationAngle() { return _get_webkitRotationAngle(this); }
48 static num _get_webkitRotationAngle(var _this) native;
49
50 String get typeName() { return "Touch"; }
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698