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

Unified Diff: runtime/bin/websocket.dart

Issue 10993059: Stop using the Hashable interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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: 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.

Powered by Google App Engine
This is Rietveld 408576698