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

Unified Diff: client/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 9653009: Fix build breakage caused by commit 5196. (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:
Download patch
« no previous file with comments | « client/dom/scripts/systemhtml.py ('k') | client/html/frog/html_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/dartium/html_dartium.dart
diff --git a/client/html/dartium/html_dartium.dart b/client/html/dartium/html_dartium.dart
index 708977c61a1473cfe354e2b2e6851f65011b9384..9f7aa1f44f38686c4d46b51deff2e11577ad1459 100644
--- a/client/html/dartium/html_dartium.dart
+++ b/client/html/dartium/html_dartium.dart
@@ -6940,8 +6940,8 @@ class _DocumentEventsImpl extends _ElementEventsImpl implements DocumentEvents {
class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment {
_DocumentFragmentImpl._wrap(ptr) : super._wrap(ptr);
- ElementEvents get on() {
- if (_on == null) _on = new ElementEvents(this);
+ _ElementEventsImpl get on() {
+ if (_on == null) _on = new _ElementEventsImpl(this);
return _on;
}
« no previous file with comments | « client/dom/scripts/systemhtml.py ('k') | client/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698