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

Unified Diff: lib/observe/list.dart

Issue 50433010: WebUI fixes for SDK 0.8.10 (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 1 month 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 | « no previous file | lib/observe/set.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/observe/list.dart
diff --git a/lib/observe/list.dart b/lib/observe/list.dart
index 6cd244d95b1c97237bbd9b1420e88fd505e41e99..41a92ece605f5c2a788519b6867b42aa90a4bebe 100644
--- a/lib/observe/list.dart
+++ b/lib/observe/list.dart
@@ -4,16 +4,17 @@
library web_ui.observe.list;
+import 'dart:collection';
+
import 'observable.dart';
-import 'package:web_ui/src/utils_observe.dart' show Arrays, ListMixinWorkaround;
+import 'package:web_ui/src/utils_observe.dart' show Arrays;
/**
* Represents an observable list of model values. If any items are added,
* removed, or replaced, then observers that are registered with
* [observe] will be notified.
*/
-class ObservableList<E> extends ListMixinWorkaround with Observable
- implements List<E> {
+class ObservableList<E> extends ListBase<E> with Observable {
/** The inner [List<E>] with the actual storage. */
final List<E> _list;
« no previous file with comments | « no previous file | lib/observe/set.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698