Chromium Code Reviews

Unified Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.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.
Jump to:
View side-by-side diff with in-line comments
Index: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
diff --git a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
index c0d888cbc4cb8761ecc3c266314bc56157af3269..6f69ff78556646150344b6f07207fd77af8d8450 100644
--- a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
+++ b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
@@ -1064,7 +1064,7 @@ class ObjectStore extends NativeFieldWrapperClass1 {
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