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

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

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final cleanup Created 7 years, 6 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 | « sdk/lib/io/http_impl.dart ('k') | sdk/lib/io/websocket_impl.dart » ('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 * The IO library is used for Dart server applications, 6 * The IO library is used for Dart server applications,
7 * which run on a stand-alone Dart VM from the command line. 7 * which run on a stand-alone Dart VM from the command line.
8 * *This library does not work in browser based applications.* 8 * *This library does not work in browser based applications.*
9 * 9 *
10 * This library allows you to work with files, directories, 10 * This library allows you to work with files, directories,
11 * sockets, processes, HTTP servers and clients, and more. 11 * sockets, processes, HTTP servers and clients, and more.
12 */ 12 */
13 library dart.io; 13 library dart.io;
14 14
15 import 'dart:async'; 15 import 'dart:async';
16 import 'dart:collection' show Queue, 16 import 'dart:collection' show Queue,
17 LinkedHashSet, 17 LinkedHashSet,
18 DoubleLinkedQueue, 18 DoubleLinkedQueue,
19 DoubleLinkedQueueEntry; 19 DoubleLinkedQueueEntry;
20 import 'dart:crypto'; 20 import 'dart:crypto';
21 import 'dart:isolate'; 21 import 'dart:isolate';
22 import 'dart:json' as JSON; 22 import 'dart:json' as JSON;
23 import 'dart:math'; 23 import 'dart:math';
24 import 'dart:uri';
25 import 'dart:utf'; 24 import 'dart:utf';
26 import 'dart:typed_data'; 25 import 'dart:typed_data';
27 26
28 part 'buffer_list.dart'; 27 part 'buffer_list.dart';
29 part 'common.dart'; 28 part 'common.dart';
30 part 'data_transformer.dart'; 29 part 'data_transformer.dart';
31 part 'directory.dart'; 30 part 'directory.dart';
32 part 'directory_impl.dart'; 31 part 'directory_impl.dart';
33 part 'eventhandler.dart'; 32 part 'eventhandler.dart';
34 part 'file.dart'; 33 part 'file.dart';
(...skipping 19 matching lines...) Expand all
54 part 'platform_impl.dart'; 53 part 'platform_impl.dart';
55 part 'process.dart'; 54 part 'process.dart';
56 part 'socket.dart'; 55 part 'socket.dart';
57 part 'stdio.dart'; 56 part 'stdio.dart';
58 part 'string_transformer.dart'; 57 part 'string_transformer.dart';
59 part 'timer_impl.dart'; 58 part 'timer_impl.dart';
60 part 'secure_socket.dart'; 59 part 'secure_socket.dart';
61 part 'secure_server_socket.dart'; 60 part 'secure_server_socket.dart';
62 part 'websocket.dart'; 61 part 'websocket.dart';
63 part 'websocket_impl.dart'; 62 part 'websocket_impl.dart';
OLDNEW
« no previous file with comments | « sdk/lib/io/http_impl.dart ('k') | sdk/lib/io/websocket_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698