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

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: Another space removed. 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
« no previous file with comments | « runtime/bin/socket.dart ('k') | runtime/bin/websocket_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/websocket.dart
diff --git a/runtime/bin/websocket.dart b/runtime/bin/websocket.dart
index a2658a54083596002d4c27dbfeb3133a65e7abe7..47e184a948b7c09a8fc465319ca7bd07fb959e3f 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 {
/**
* 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.
« no previous file with comments | « runtime/bin/socket.dart ('k') | runtime/bin/websocket_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698