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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
Index: client/html/generated/html/dartium/KeyboardEvent.dart
diff --git a/client/html/generated/html/dartium/KeyboardEvent.dart b/client/html/generated/html/dartium/KeyboardEvent.dart
new file mode 100644
index 0000000000000000000000000000000000000000..5054b08e5a0c8a332d610c8e8cb9dfd1e1b8edd4
--- /dev/null
+++ b/client/html/generated/html/dartium/KeyboardEvent.dart
@@ -0,0 +1,23 @@
+
+class _KeyboardEventImpl extends _UIEventImpl implements KeyboardEvent {
+ _KeyboardEventImpl._wrap(ptr) : super._wrap(ptr);
+
+ bool get altGraphKey() => _wrap(_ptr.altGraphKey);
+
+ bool get altKey() => _wrap(_ptr.altKey);
+
+ bool get ctrlKey() => _wrap(_ptr.ctrlKey);
+
+ String get keyIdentifier() => _wrap(_ptr.keyIdentifier);
+
+ int get keyLocation() => _wrap(_ptr.keyLocation);
+
+ bool get metaKey() => _wrap(_ptr.metaKey);
+
+ bool get shiftKey() => _wrap(_ptr.shiftKey);
+
+ void initKeyboardEvent(String type, bool canBubble, bool cancelable, Window view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) {
+ _ptr.initKeyboardEvent(_unwrap(type), _unwrap(canBubble), _unwrap(cancelable), _unwrap(view), _unwrap(keyIdentifier), _unwrap(keyLocation), _unwrap(ctrlKey), _unwrap(altKey), _unwrap(shiftKey), _unwrap(metaKey), _unwrap(altGraphKey));
+ return;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698