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

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

Issue 9553011: Fix dartium checked mode build break. (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:
Download patch
« no previous file with comments | « client/dom/templates/html/impl/impl_Node.darttemplate ('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 ae78eb9a56ed827029d47c1b72a2042b3fd121e0..5bb4f6b3718d8e2e4cfae4e6496a2c0dd3f55c5c 100644
--- a/client/html/dartium/html_dartium.dart
+++ b/client/html/dartium/html_dartium.dart
@@ -8214,7 +8214,7 @@ class _EventListenerListImpl implements EventListenerList {
// TODO(jacobr): what is the correct behavior here. We could alternately
// force the event to have the expected type.
assert(evt.type == _type);
- return _ptr._dispatchEvent(_unwrap(evt));
+ return _ptr._dispatchEvent(evt);
}
void _add(EventListener listener, bool useCapture) {
@@ -28357,7 +28357,7 @@ interface NodeList extends List<Node> {
interface NodeSelector {
- // TODO(nweiz): add this back once DocumentFragment is ported.
+ // TODO(nweiz): add this back once DocumentFragment is ported.
// ElementList queryAll(String selectors);
« no previous file with comments | « client/dom/templates/html/impl/impl_Node.darttemplate ('k') | client/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698