Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 library mime; | 5 library vmservice; |
| 6 | 6 |
| 7 import 'dart:isolate'; | |
| 7 import 'dart:async'; | 8 import 'dart:async'; |
| 9 import 'dart:io'; | |
| 10 import 'dart:json' as JSON; | |
| 11 import 'dart:utf' as UTF; | |
| 8 import 'dart:typed_data'; | 12 import 'dart:typed_data'; |
|
siva
2013/07/15 21:40:16
not sure if the dart style is to list these import
Cutch
2013/07/15 21:58:38
It's not but I like it. Done.
| |
| 9 | 13 |
| 10 part 'src/mime_type.dart'; | 14 void messageHandler(message, SendPort replyTo) { |
| 11 part 'src/extension_map.dart'; | 15 } |
| 12 part 'src/magic_number.dart'; | 16 |
| 13 part 'src/mime_multipart_transformer.dart'; | 17 main() { |
| 18 port.receive(messageHandler); | |
| 19 } | |
| OLD | NEW |