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

Side by Side Diff: tools/dom/src/EventStreamProvider.dart

Issue 164743003: Remove the html warnings! (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of html; 5 part of html;
6 6
7 /** 7 /**
8 * A factory to expose DOM events as Streams. 8 * A factory to expose DOM events as Streams.
9 */ 9 */
10 class EventStreamProvider<T extends Event> { 10 class EventStreamProvider<T extends Event> {
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 } 421 }
422 422
423 ElementStream<T> _forElementList(ElementList e, 423 ElementStream<T> _forElementList(ElementList e,
424 {bool useCapture: false}) { 424 {bool useCapture: false}) {
425 return new _ElementListEventStreamImpl(e, _eventTypeGetter(e), useCapture); 425 return new _ElementListEventStreamImpl(e, _eventTypeGetter(e), useCapture);
426 } 426 }
427 427
428 String getEventType(EventTarget target) { 428 String getEventType(EventTarget target) {
429 return _eventTypeGetter(target); 429 return _eventTypeGetter(target);
430 } 430 }
431
432 String get _eventType =>
433 throw new UnsupportedError('Access type through getEventType method.');
431 } 434 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698