Chromium Code Reviews| Index: sdk/lib/async/stream.dart |
| diff --git a/sdk/lib/async/stream.dart b/sdk/lib/async/stream.dart |
| index 528dee00a4ce0d23bacfddd017b720e7faee1d56..07378b51c910d3fe2ee3f9cc65eb2d18241ccd95 100644 |
| --- a/sdk/lib/async/stream.dart |
| +++ b/sdk/lib/async/stream.dart |
| @@ -158,7 +158,7 @@ abstract class Stream<T> { |
| */ |
| Stream<T> asBroadcastStream() { |
| if (isBroadcast) return this; |
| - return new _SingleStreamMultiplexer<T>(this); |
| + return new _AsBroadcastStream<T>(this); |
| } |
| /** |