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

Side by Side Diff: sdk/lib/io/io.dart

Issue 878323002: - Move timer implementation closer to the rest of message handling. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/lib/timer_patch.dart ('k') | sdk/lib/io/iolib_sources.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * File, socket, HTTP, and other I/O support for server applications. 6 * File, socket, HTTP, and other I/O support for server applications.
7 * 7 *
8 * The I/O library is used for Dart server applications, 8 * The I/O library is used for Dart server applications,
9 * which run on a stand-alone Dart VM from the command line. 9 * which run on a stand-alone Dart VM from the command line.
10 * *This library does not work in browser-based applications.* 10 * *This library does not work in browser-based applications.*
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 part 'io_sink.dart'; 229 part 'io_sink.dart';
230 part 'io_service.dart'; 230 part 'io_service.dart';
231 part 'link.dart'; 231 part 'link.dart';
232 part 'platform.dart'; 232 part 'platform.dart';
233 part 'platform_impl.dart'; 233 part 'platform_impl.dart';
234 part 'process.dart'; 234 part 'process.dart';
235 part 'service_object.dart'; 235 part 'service_object.dart';
236 part 'socket.dart'; 236 part 'socket.dart';
237 part 'stdio.dart'; 237 part 'stdio.dart';
238 part 'string_transformer.dart'; 238 part 'string_transformer.dart';
239 part 'timer_impl.dart';
240 part 'secure_socket.dart'; 239 part 'secure_socket.dart';
241 part 'secure_server_socket.dart'; 240 part 'secure_server_socket.dart';
242 part 'websocket.dart'; 241 part 'websocket.dart';
243 part 'websocket_impl.dart'; 242 part 'websocket_impl.dart';
OLDNEW
« no previous file with comments | « runtime/lib/timer_patch.dart ('k') | sdk/lib/io/iolib_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698