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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 11227024: Cleanup list-like interfaces generation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index 04187a4641b5029fe7bc113eb6e98e40af4ba841..b2b4466831b3b78c50813dfa07c8eac43b86d742 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -35089,7 +35089,7 @@ class _SourceBufferImpl extends NativeFieldWrapperClass1 implements SourceBuffer
// WARNING: Do not edit - generated code.
/// @domName SourceBufferList
-abstract class SourceBufferList implements List<SourceBuffer>, EventTarget {
+abstract class SourceBufferList implements EventTarget, List<SourceBuffer> {
/** @domName SourceBufferList.length */
abstract int get length;
@@ -35112,7 +35112,7 @@ abstract class SourceBufferList implements List<SourceBuffer>, EventTarget {
// WARNING: Do not edit - generated code.
-class _SourceBufferListImpl extends NativeFieldWrapperClass1 implements SourceBufferList {
+class _SourceBufferListImpl extends _EventTargetImpl implements SourceBufferList {
int get length native "SourceBufferList_length_Getter";
@@ -37557,7 +37557,7 @@ class _TextTrackEventsImpl extends _EventsImpl implements TextTrackEvents {
// WARNING: Do not edit - generated code.
/// @domName TextTrackList
-abstract class TextTrackList implements List<TextTrack>, EventTarget {
+abstract class TextTrackList implements EventTarget, List<TextTrack> {
/**
* @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
@@ -37590,7 +37590,7 @@ abstract class TextTrackListEvents implements Events {
// WARNING: Do not edit - generated code.
-class _TextTrackListImpl extends NativeFieldWrapperClass1 implements TextTrackList {
+class _TextTrackListImpl extends _EventTargetImpl implements TextTrackList {
_TextTrackListEventsImpl get on =>
new _TextTrackListEventsImpl(this);

Powered by Google App Engine
This is Rietveld 408576698