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

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

Issue 1474603003: Move tar archive parsing to C++ (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comments Created 5 years 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
« no previous file with comments | « sdk/lib/vmservice/asset.dart ('k') | no next file » | 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 dart._vmservice; 5 library dart._vmservice;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:collection';
8 import 'dart:convert'; 9 import 'dart:convert';
9 import 'dart:isolate'; 10 import 'dart:isolate';
10 import 'dart:typed_data'; 11 import 'dart:typed_data';
11 12
12 part 'asset.dart'; 13 part 'asset.dart';
13 part 'client.dart'; 14 part 'client.dart';
14 part 'constants.dart'; 15 part 'constants.dart';
15 part 'running_isolate.dart'; 16 part 'running_isolate.dart';
16 part 'running_isolates.dart'; 17 part 'running_isolates.dart';
17 part 'message.dart'; 18 part 'message.dart';
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 325
325 external void _onStart(); 326 external void _onStart();
326 327
327 external void _onExit(); 328 external void _onExit();
328 329
329 external bool _vmListenStream(String streamId); 330 external bool _vmListenStream(String streamId);
330 331
331 external void _vmCancelStream(String streamId); 332 external void _vmCancelStream(String streamId);
332 333
333 external Uint8List _requestAssets(); 334 external Uint8List _requestAssets();
OLDNEW
« no previous file with comments | « sdk/lib/vmservice/asset.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698