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