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

Unified Diff: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart

Issue 12610006: Renamed StreamSink to EventSink. Renamed signalError to addError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
diff --git a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
index 9c3b3775fff5c5334be291e023b94f41b418b0ba..f139b2a52f9ae99907b38fa37caf7dfad411033c 100644
--- a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
+++ b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
@@ -156,7 +156,7 @@ class Cursor native "*IDBCursor" {
}
}
-
+
@DomName('IDBCursor.direction')
@DocsEditable
final String direction;
@@ -572,7 +572,7 @@ class Index native "*IDBIndex" {
return ObjectStore._cursorStreamFromResult(request, autoAdvance);
}
-
+
@DomName('IDBIndex.keyPath')
@DocsEditable
final dynamic keyPath;
@@ -1005,7 +1005,7 @@ class ObjectStore native "*IDBObjectStore" {
request.onError.listen((e) {
//TODO: Report stacktrace once issue 4061 is resolved.
- controller.signalError(e);
+ controller.addError(e);
});
request.onSuccess.listen((e) {

Powered by Google App Engine
This is Rietveld 408576698