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

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: Changed inheritance back! Now create StreamSink instead of EventSink where we create them. 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/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
This is Rietveld 408576698