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

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

Issue 1411853003: Service isolate requests Observatory assets from embedder (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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') | sdk/lib/vmservice/vmservice_sources.gypi » ('j') | 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:convert'; 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 'asset.dart';
12 part 'client.dart'; 13 part 'client.dart';
13 part 'constants.dart'; 14 part 'constants.dart';
14 part 'running_isolate.dart'; 15 part 'running_isolate.dart';
15 part 'running_isolates.dart'; 16 part 'running_isolates.dart';
16 part 'message.dart'; 17 part 'message.dart';
17 part 'message_router.dart'; 18 part 'message_router.dart';
18 19
19 final RawReceivePort isolateLifecyclePort = new RawReceivePort(); 20 final RawReceivePort isolateLifecyclePort = new RawReceivePort();
20 final RawReceivePort scriptLoadPort = new RawReceivePort(); 21 final RawReceivePort scriptLoadPort = new RawReceivePort();
21 22
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 } 323 }
323 324
324 external void _onStart(); 325 external void _onStart();
325 326
326 external void _onExit(); 327 external void _onExit();
327 328
328 external bool _vmListenStream(String streamId); 329 external bool _vmListenStream(String streamId);
329 330
330 external void _vmCancelStream(String streamId); 331 external void _vmCancelStream(String streamId);
331 332
333 external Uint8List _requestAssets();
OLDNEW
« no previous file with comments | « sdk/lib/vmservice/asset.dart ('k') | sdk/lib/vmservice/vmservice_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698