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

Side by Side Diff: client/html/generated/html/dartium/TouchEvent.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (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
2 class _TouchEventImpl extends _UIEventImpl implements TouchEvent {
3 _TouchEventImpl._wrap(ptr) : super._wrap(ptr);
4
5 bool get altKey() => _wrap(_ptr.altKey);
6
7 TouchList get changedTouches() => _wrap(_ptr.changedTouches);
8
9 bool get ctrlKey() => _wrap(_ptr.ctrlKey);
10
11 bool get metaKey() => _wrap(_ptr.metaKey);
12
13 bool get shiftKey() => _wrap(_ptr.shiftKey);
14
15 TouchList get targetTouches() => _wrap(_ptr.targetTouches);
16
17 TouchList get touches() => _wrap(_ptr.touches);
18
19 void initTouchEvent(TouchList touches, TouchList targetTouches, TouchList chan gedTouches, String type, Window view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) {
20 _ptr.initTouchEvent(_unwrap(touches), _unwrap(targetTouches), _unwrap(change dTouches), _unwrap(type), _unwrap(view), _unwrap(screenX), _unwrap(screenY), _un wrap(clientX), _unwrap(clientY), _unwrap(ctrlKey), _unwrap(altKey), _unwrap(shif tKey), _unwrap(metaKey));
21 return;
22 }
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698