OLD | NEW |
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 patch class Asset { | 5 patch class Asset { |
6 /// Call to request assets from the embedder. | 6 /// Call to request assets from the embedder. |
7 /* patch */ static HashMap<String, Asset> request() { | 7 /* patch */ static HashMap<String, Asset> request() { |
8 HashMap<String, Asset> assets = new HashMap<String, Asset>(); | 8 HashMap<String, Asset> assets = new HashMap<String, Asset>(); |
9 Uint8List tarBytes = _requestAssets(); | 9 Uint8List tarBytes = _requestAssets(); |
10 if (tarBytes == null) { | 10 if (tarBytes == null) { |
11 return assets; | 11 return assets; |
12 } | 12 } |
13 List assetList = _decodeAssets(tarBytes); | 13 List assetList = _decodeAssets(tarBytes); |
14 for (int i = 0; i < assetList.length; i += 2) { | 14 for (int i = 0; i < assetList.length; i += 2) { |
15 var a = new Asset(assetList[i], assetList[i + 1]); | 15 var a = new Asset(assetList[i], assetList[i + 1]); |
16 assets[a.name] = a; | 16 assets[a.name] = a; |
17 } | 17 } |
18 return assets; | 18 return assets; |
19 } | 19 } |
20 } | 20 } |
21 | 21 |
22 List _decodeAssets(Uint8List data) native "VMService_DecodeAssets"; | 22 List _decodeAssets(Uint8List data) native "VMService_DecodeAssets"; |
23 | 23 |
24 patch bool sendIsolateServiceMessage(SendPort sp, List m) | 24 patch bool sendIsolateServiceMessage(SendPort sp, List m) |
25 native "VMService_SendIsolateServiceMessage"; | 25 native "VMService_SendIsolateServiceMessage"; |
26 patch void sendRootServiceMessage(List m) | 26 patch void sendRootServiceMessage(List m) |
27 native "VMService_SendRootServiceMessage"; | 27 native "VMService_SendRootServiceMessage"; |
| 28 patch void sendObjectRootServiceMessage(List m) |
| 29 native "VMService_SendObjectRootServiceMessage"; |
28 patch void _onStart() native "VMService_OnStart"; | 30 patch void _onStart() native "VMService_OnStart"; |
29 patch void _onExit() native "VMService_OnExit"; | 31 patch void _onExit() native "VMService_OnExit"; |
30 patch void onServerAddressChange(String address) | 32 patch void onServerAddressChange(String address) |
31 native "VMService_OnServerAddressChange"; | 33 native "VMService_OnServerAddressChange"; |
32 patch bool _vmListenStream(String streamId) native "VMService_ListenStream"; | 34 patch bool _vmListenStream(String streamId) native "VMService_ListenStream"; |
33 patch void _vmCancelStream(String streamId) native "VMService_CancelStream"; | 35 patch void _vmCancelStream(String streamId) native "VMService_CancelStream"; |
34 patch Uint8List _requestAssets() native "VMService_RequestAssets"; | 36 patch Uint8List _requestAssets() native "VMService_RequestAssets"; |
OLD | NEW |