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

Unified Diff: client/html/generated/html/dartium/BodyElement.dart

Issue 9623017: Refactor the event-generation code to locate it in systemhtml.py. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/html/frog/html_frog.dart ('k') | client/html/generated/html/dartium/DOMApplicationCache.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/generated/html/dartium/BodyElement.dart
diff --git a/client/html/generated/html/dartium/BodyElement.dart b/client/html/generated/html/dartium/BodyElement.dart
index db5d951981b4d8b4a327aab5fad28b726bba872c..9e3ee0382e38c9a9b1005a4b8cdd3495ab9dd5ef 100644
--- a/client/html/generated/html/dartium/BodyElement.dart
+++ b/client/html/generated/html/dartium/BodyElement.dart
@@ -2,6 +2,11 @@
class _BodyElementImpl extends _ElementImpl implements BodyElement {
_BodyElementImpl._wrap(ptr) : super._wrap(ptr);
+ _BodyElementEventsImpl get on() {
+ if (_on == null) _on = new _BodyElementEventsImpl(this);
+ return _on;
+ }
+
String get aLink() => _wrap(_ptr.aLink);
void set aLink(String value) { _ptr.aLink = _unwrap(value); }
@@ -21,11 +26,6 @@ class _BodyElementImpl extends _ElementImpl implements BodyElement {
String get vLink() => _wrap(_ptr.vLink);
void set vLink(String value) { _ptr.vLink = _unwrap(value); }
-
- _BodyElementEventsImpl get on() {
- if (_on == null) _on = new _BodyElementEventsImpl(this);
- return _on;
- }
}
class _BodyElementEventsImpl extends _ElementEventsImpl implements BodyElementEvents {
« no previous file with comments | « client/html/frog/html_frog.dart ('k') | client/html/generated/html/dartium/DOMApplicationCache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698