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

Unified Diff: pkg/observe/lib/src/list_diff.dart

Issue 420673002: Roll polymer packages to version 0.3.4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: pkg/observe/lib/src/list_diff.dart
diff --git a/pkg/observe/lib/src/list_diff.dart b/pkg/observe/lib/src/list_diff.dart
index 59a969883796b4626cc6e3b27aa964a978685250..cbc3f2f8ed413f4a25b4dc8ab698b739ffdc6be3 100644
--- a/pkg/observe/lib/src/list_diff.dart
+++ b/pkg/observe/lib/src/list_diff.dart
@@ -6,12 +6,13 @@ library observe.src.list_diff;
import 'dart:math' as math;
import 'dart:collection' show UnmodifiableListView;
+import 'change_record.dart' show ChangeRecord;
/// A summary of an individual change to a [List].
///
/// Each delta represents that at the [index], [removed] sequence of items were
/// removed, and counting forward from [index], [addedCount] items were added.
-class ListChangeRecord {
+class ListChangeRecord extends ChangeRecord {
/// The list that changed.
final List object;

Powered by Google App Engine
This is Rietveld 408576698