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

Unified Diff: bin/socket.dart

Issue 8949043: - Fix outdated use of factory clause. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 9 years 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 | « bin/process.dart ('k') | bin/timer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/socket.dart
===================================================================
--- bin/socket.dart (revision 2706)
+++ bin/socket.dart (working copy)
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-interface ServerSocket factory _ServerSocket {
+interface ServerSocket default _ServerSocket {
/*
* Constructs a new server socket, binds it to a given address and port,
* and listens on it.
@@ -32,7 +32,7 @@
}
-interface Socket factory _Socket {
+interface Socket default _Socket {
/*
* Constructs a new socket and connects it to the given host on the given
* port.
« no previous file with comments | « bin/process.dart ('k') | bin/timer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698