Chromium Code Reviews| Index: runtime/bin/websocket.dart |
| diff --git a/runtime/bin/websocket.dart b/runtime/bin/websocket.dart |
| index a2658a54083596002d4c27dbfeb3133a65e7abe7..b52d8a24aab7431df5817a9722aef9ecc3cf2215 100644 |
| --- a/runtime/bin/websocket.dart |
| +++ b/runtime/bin/websocket.dart |
| @@ -57,7 +57,7 @@ abstract class WebSocketHandler { |
| /** |
| * Server web socket connection. |
| */ |
| -abstract class WebSocketConnection implements Hashable { |
| +abstract class WebSocketConnection { |
|
Mads Ager (google)
2012/09/27 12:48:27
guess what. In the rest of the file as well.
|
| /** |
| * Sets the callback to be called when a message have been |
| * received. The type on [message] is either [:String:] or |
| @@ -100,7 +100,7 @@ abstract class WebSocketConnection implements Hashable { |
| /** |
| * Client web socket connection. |
| */ |
| -abstract class WebSocketClientConnection implements Hashable { |
| +abstract class WebSocketClientConnection { |
| /** |
| * Creates a new web socket client connection based on a HTTP client |
| * connection. The HTTP client connection must be freshly opened. |