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

Side by Side Diff: runtime/bin/vmservice/vmservice.dart

Issue 19231005: Initial NOOP VM Service (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698