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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/vmservice.h ('k') | runtime/bin/vmservice_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/vmservice/vmservice.dart
diff --git a/pkg/mime/lib/mime.dart b/runtime/bin/vmservice/vmservice.dart
similarity index 55%
copy from pkg/mime/lib/mime.dart
copy to runtime/bin/vmservice/vmservice.dart
index 44c6cadd9de34ee98d0cf01a1bf53f834dbe2a4d..e074e9a4d4b6663c78fa2652a7c9f2ca5fbd48c4 100644
--- a/pkg/mime/lib/mime.dart
+++ b/runtime/bin/vmservice/vmservice.dart
@@ -2,12 +2,20 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library mime;
+library vmservice;
import 'dart:async';
+import 'dart:json' as JSON;
+import 'dart:io';
+import 'dart:isolate';
import 'dart:typed_data';
+import 'dart:utf' as UTF;
-part 'src/mime_type.dart';
-part 'src/extension_map.dart';
-part 'src/magic_number.dart';
-part 'src/mime_multipart_transformer.dart';
+
+void messageHandler(message, SendPort replyTo) {
+}
+
+
+main() {
+ port.receive(messageHandler);
+}
« no previous file with comments | « runtime/bin/vmservice.h ('k') | runtime/bin/vmservice_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698