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

Unified Diff: tools/dom/templates/html/impl/impl_Node.darttemplate

Issue 14136004: Remove StreamController.broadcast. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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: tools/dom/templates/html/impl/impl_Node.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_Node.darttemplate b/tools/dom/templates/html/impl/impl_Node.darttemplate
index cb664d6e721bc8dfc1ad3563a1f316c9871ca90b..3e6f4037c24c7e4ac6f7294713d57ac69519f604 100644
--- a/tools/dom/templates/html/impl/impl_Node.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Node.darttemplate
@@ -339,7 +339,7 @@ $endif
if (_modelChangedStream == null) {
// Ensure the model is cached locally to minimize change notifications.
_model = model;
- _modelChangedStream = new StreamController.broadcast();
+ _modelChangedStream = new StreamController();
}
return _modelChangedStream.stream;
Anders Johnsen 2013/04/15 10:22:34 .asBroadcastStream?
floitsch 2013/04/15 22:58:12 No. But this is not the correct fix...
}

Powered by Google App Engine
This is Rietveld 408576698