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

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

Issue 23596007: Remove usage of dart:json. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 7 years, 3 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 vmservice; 5 library vmservice;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:json' as JSON; 8 import "dart:convert";
9 import 'dart:isolate'; 9 import 'dart:isolate';
10 import 'dart:typed_data'; 10 import 'dart:typed_data';
11 11
12 part 'constants.dart'; 12 part 'constants.dart';
13 part 'resources.dart'; 13 part 'resources.dart';
14 part 'running_isolate.dart'; 14 part 'running_isolate.dart';
15 part 'running_isolates.dart'; 15 part 'running_isolates.dart';
16 part 'service_request.dart'; 16 part 'service_request.dart';
17 part 'service_request_router.dart'; 17 part 'service_request_router.dart';
18 18
(...skipping 25 matching lines...) Expand all
44 factory VMService() { 44 factory VMService() {
45 if (VMService._instance == null) { 45 if (VMService._instance == null) {
46 VMService._instance = new VMService._internal(); 46 VMService._instance = new VMService._internal();
47 } 47 }
48 return _instance; 48 return _instance;
49 } 49 }
50 } 50 }
51 51
52 void sendServiceMessage(SendPort sp, ReceivePort rp, Object m) 52 void sendServiceMessage(SendPort sp, ReceivePort rp, Object m)
53 native "SendServiceMessage"; 53 native "SendServiceMessage";
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698