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

Side by Side Diff: client/dom/generated/src/wrapping/_UIEventWrappingImplementation.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 _UIEventWrappingImplementation extends _EventWrappingImplementation implem ents UIEvent {
8 _UIEventWrappingImplementation() : super() {}
9
10 static create__UIEventWrappingImplementation() native {
11 return new _UIEventWrappingImplementation();
12 }
13
14 int get charCode() { return _get_charCode(this); }
15 static int _get_charCode(var _this) native;
16
17 int get detail() { return _get_detail(this); }
18 static int _get_detail(var _this) native;
19
20 int get keyCode() { return _get_keyCode(this); }
21 static int _get_keyCode(var _this) native;
22
23 int get layerX() { return _get_layerX(this); }
24 static int _get_layerX(var _this) native;
25
26 int get layerY() { return _get_layerY(this); }
27 static int _get_layerY(var _this) native;
28
29 int get pageX() { return _get_pageX(this); }
30 static int _get_pageX(var _this) native;
31
32 int get pageY() { return _get_pageY(this); }
33 static int _get_pageY(var _this) native;
34
35 DOMWindow get view() { return _get_view(this); }
36 static DOMWindow _get_view(var _this) native;
37
38 int get which() { return _get_which(this); }
39 static int _get_which(var _this) native;
40
41 void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view, int detail) {
42 _initUIEvent(this, type, canBubble, cancelable, view, detail);
43 return;
44 }
45 static void _initUIEvent(receiver, type, canBubble, cancelable, view, detail) native;
46
47 String get typeName() { return "UIEvent"; }
48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698