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

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

Issue 18438005: Move MimeMultipartTransformer and HttpBodyHandler to mime and http_server packages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove import. Created 7 years, 5 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_multipart_form_data_impl.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 * 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,
(...skipping 16 matching lines...) Expand all
27 part 'common.dart'; 27 part 'common.dart';
28 part 'crypto.dart'; 28 part 'crypto.dart';
29 part 'data_transformer.dart'; 29 part 'data_transformer.dart';
30 part 'directory.dart'; 30 part 'directory.dart';
31 part 'directory_impl.dart'; 31 part 'directory_impl.dart';
32 part 'eventhandler.dart'; 32 part 'eventhandler.dart';
33 part 'file.dart'; 33 part 'file.dart';
34 part 'file_impl.dart'; 34 part 'file_impl.dart';
35 part 'file_system_entity.dart'; 35 part 'file_system_entity.dart';
36 part 'http.dart'; 36 part 'http.dart';
37 part 'http_body.dart';
38 part 'http_body_impl.dart';
39 part 'http_date.dart'; 37 part 'http_date.dart';
40 part 'http_headers.dart'; 38 part 'http_headers.dart';
41 part 'http_impl.dart'; 39 part 'http_impl.dart';
42 part 'http_multipart_form_data.dart';
43 part 'http_multipart_form_data_impl.dart';
44 part 'http_parser.dart'; 40 part 'http_parser.dart';
45 part 'http_session.dart'; 41 part 'http_session.dart';
46 part 'io_sink.dart'; 42 part 'io_sink.dart';
47 part 'link.dart'; 43 part 'link.dart';
48 part 'mime_multipart_parser.dart';
49 part 'options.dart'; 44 part 'options.dart';
50 part 'path.dart'; 45 part 'path.dart';
51 part 'path_impl.dart'; 46 part 'path_impl.dart';
52 part 'platform.dart'; 47 part 'platform.dart';
53 part 'platform_impl.dart'; 48 part 'platform_impl.dart';
54 part 'process.dart'; 49 part 'process.dart';
55 part 'socket.dart'; 50 part 'socket.dart';
56 part 'stdio.dart'; 51 part 'stdio.dart';
57 part 'string_transformer.dart'; 52 part 'string_transformer.dart';
58 part 'timer_impl.dart'; 53 part 'timer_impl.dart';
59 part 'secure_socket.dart'; 54 part 'secure_socket.dart';
60 part 'secure_server_socket.dart'; 55 part 'secure_server_socket.dart';
61 part 'websocket.dart'; 56 part 'websocket.dart';
62 part 'websocket_impl.dart'; 57 part 'websocket_impl.dart';
OLDNEW
« no previous file with comments | « sdk/lib/io/http_multipart_form_data_impl.dart ('k') | sdk/lib/io/iolib_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698