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

Unified Diff: client/dom/generated/src/wrapping/_KeyboardEventWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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/dom/generated/src/wrapping/_KeyboardEventWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_KeyboardEventWrappingImplementation.dart b/client/dom/generated/src/wrapping/_KeyboardEventWrappingImplementation.dart
index bf0a1fa6fdc5eb0fcc4d8d1d1f7c228f700ad6f7..6b673f632abecc5b9a21d3db6708a5c6bc1c5da1 100644
--- a/client/dom/generated/src/wrapping/_KeyboardEventWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_KeyboardEventWrappingImplementation.dart
@@ -11,26 +11,26 @@ class _KeyboardEventWrappingImplementation extends _UIEventWrappingImplementatio
return new _KeyboardEventWrappingImplementation();
}
- bool get altGraphKey() { return _get__KeyboardEvent_altGraphKey(this); }
- static bool _get__KeyboardEvent_altGraphKey(var _this) native;
+ bool get altGraphKey() { return _get_altGraphKey(this); }
+ static bool _get_altGraphKey(var _this) native;
- bool get altKey() { return _get__KeyboardEvent_altKey(this); }
- static bool _get__KeyboardEvent_altKey(var _this) native;
+ bool get altKey() { return _get_altKey(this); }
+ static bool _get_altKey(var _this) native;
- bool get ctrlKey() { return _get__KeyboardEvent_ctrlKey(this); }
- static bool _get__KeyboardEvent_ctrlKey(var _this) native;
+ bool get ctrlKey() { return _get_ctrlKey(this); }
+ static bool _get_ctrlKey(var _this) native;
- String get keyIdentifier() { return _get__KeyboardEvent_keyIdentifier(this); }
- static String _get__KeyboardEvent_keyIdentifier(var _this) native;
+ String get keyIdentifier() { return _get_keyIdentifier(this); }
+ static String _get_keyIdentifier(var _this) native;
- int get keyLocation() { return _get__KeyboardEvent_keyLocation(this); }
- static int _get__KeyboardEvent_keyLocation(var _this) native;
+ int get keyLocation() { return _get_keyLocation(this); }
+ static int _get_keyLocation(var _this) native;
- bool get metaKey() { return _get__KeyboardEvent_metaKey(this); }
- static bool _get__KeyboardEvent_metaKey(var _this) native;
+ bool get metaKey() { return _get_metaKey(this); }
+ static bool _get_metaKey(var _this) native;
- bool get shiftKey() { return _get__KeyboardEvent_shiftKey(this); }
- static bool _get__KeyboardEvent_shiftKey(var _this) native;
+ bool get shiftKey() { return _get_shiftKey(this); }
+ static bool _get_shiftKey(var _this) native;
void initKeyboardEvent(String type, bool canBubble, bool cancelable, DOMWindow view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) {
_initKeyboardEvent(this, type, canBubble, cancelable, view, keyIdentifier, keyLocation, ctrlKey, altKey, shiftKey, metaKey, altGraphKey);

Powered by Google App Engine
This is Rietveld 408576698