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 { | |
6 /// Call to request assets from the embedder. | |
7 /* patch */ static HashMap<String, Asset> request() { | |
Ivan Posva
2015/11/25 17:09:04
Does this need to be a public addition to the Asse
zra
2015/11/25 19:06:16
This is patching over a public call implemented in
| |
8 HashMap<String, Asset> assets = new HashMap<String, Asset>(); | |
9 Uint8List tarBytes = _requestAssets(); | |
10 if (tarBytes == null) { | |
11 return assets; | |
12 } | |
13 List assetList = _decodeAssets(tarBytes); | |
14 for (int i = 0; i < assetList.length; i++) { | |
15 var a = new Asset(assetList[i][0], assetList[i][1]); | |
Ivan Posva
2015/11/25 17:09:04
If you have even entries for the names and odd ent
zra
2015/11/25 19:06:16
Done.
| |
16 assets[a.name] = a; | |
17 } | |
18 return assets; | |
19 } | |
20 } | |
21 | |
22 List _decodeAssets(Uint8List data) native "VMService_DecodeAssets"; | |
23 | |
5 patch bool sendIsolateServiceMessage(SendPort sp, List m) | 24 patch bool sendIsolateServiceMessage(SendPort sp, List m) |
6 native "VMService_SendIsolateServiceMessage"; | 25 native "VMService_SendIsolateServiceMessage"; |
7 patch void sendRootServiceMessage(List m) | 26 patch void sendRootServiceMessage(List m) |
8 native "VMService_SendRootServiceMessage"; | 27 native "VMService_SendRootServiceMessage"; |
9 patch void _onStart() native "VMService_OnStart"; | 28 patch void _onStart() native "VMService_OnStart"; |
10 patch void _onExit() native "VMService_OnExit"; | 29 patch void _onExit() native "VMService_OnExit"; |
11 patch bool _vmListenStream(String streamId) native "VMService_ListenStream"; | 30 patch bool _vmListenStream(String streamId) native "VMService_ListenStream"; |
12 patch void _vmCancelStream(String streamId) native "VMService_CancelStream"; | 31 patch void _vmCancelStream(String streamId) native "VMService_CancelStream"; |
13 patch Uint8List _requestAssets() native "VMService_RequestAssets"; | 32 patch Uint8List _requestAssets() native "VMService_RequestAssets"; |
OLD | NEW |