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

Side by Side Diff: client/html/generated/html/dartium/KeyboardEvent.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 _KeyboardEventImpl extends _UIEventImpl implements KeyboardEvent {
3 _KeyboardEventImpl._wrap(ptr) : super._wrap(ptr);
4
5 bool get altGraphKey() => _wrap(_ptr.altGraphKey);
6
7 bool get altKey() => _wrap(_ptr.altKey);
8
9 bool get ctrlKey() => _wrap(_ptr.ctrlKey);
10
11 String get keyIdentifier() => _wrap(_ptr.keyIdentifier);
12
13 int get keyLocation() => _wrap(_ptr.keyLocation);
14
15 bool get metaKey() => _wrap(_ptr.metaKey);
16
17 bool get shiftKey() => _wrap(_ptr.shiftKey);
18
19 void initKeyboardEvent(String type, bool canBubble, bool cancelable, Window vi ew, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool shift Key, bool metaKey, bool altGraphKey) {
20 _ptr.initKeyboardEvent(_unwrap(type), _unwrap(canBubble), _unwrap(cancelable ), _unwrap(view), _unwrap(keyIdentifier), _unwrap(keyLocation), _unwrap(ctrlKey) , _unwrap(altKey), _unwrap(shiftKey), _unwrap(metaKey), _unwrap(altGraphKey));
21 return;
22 }
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698