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

Unified Diff: lib/isolate/base.dart

Issue 10928139: Changed interfaces to abstract classes where possible in {lib,samples,pkg} (Closed) Base URL: http://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: lib/isolate/base.dart
===================================================================
--- lib/isolate/base.dart (revision 12252)
+++ lib/isolate/base.dart (working copy)
@@ -50,7 +50,7 @@
*
* [SendPort]s can be transmitted to other isolates.
*/
-interface SendPort extends Hashable {
+abstract class SendPort implements Hashable {
/**
* Sends an asynchronous [message] to this send port. The message is copied to
@@ -137,7 +137,7 @@
}
// TODO(kasperl): Make this hashable and document it.
-interface SendPortSync {
+abstract class SendPortSync {
callSync(var message);
« no previous file with comments | « lib/crypto/crypto.dart ('k') | lib/utf/utf_core.dart » ('j') | lib/utf/utf_core.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698