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

Side by Side Diff: runtime/lib/vmservice_patch.dart

Issue 2072543002: First cut at _spawnUri rpc in the vm service. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Code review Created 4 years, 5 months 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 | « runtime/lib/vmservice.cc ('k') | runtime/observatory/lib/src/service/object.dart » ('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 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) {
(...skipping 16 matching lines...) Expand all
27 native "VMService_SendRootServiceMessage"; 27 native "VMService_SendRootServiceMessage";
28 patch void sendObjectRootServiceMessage(List m) 28 patch void sendObjectRootServiceMessage(List m)
29 native "VMService_SendObjectRootServiceMessage"; 29 native "VMService_SendObjectRootServiceMessage";
30 patch void _onStart() native "VMService_OnStart"; 30 patch void _onStart() native "VMService_OnStart";
31 patch void _onExit() native "VMService_OnExit"; 31 patch void _onExit() native "VMService_OnExit";
32 patch void onServerAddressChange(String address) 32 patch void onServerAddressChange(String address)
33 native "VMService_OnServerAddressChange"; 33 native "VMService_OnServerAddressChange";
34 patch bool _vmListenStream(String streamId) native "VMService_ListenStream"; 34 patch bool _vmListenStream(String streamId) native "VMService_ListenStream";
35 patch void _vmCancelStream(String streamId) native "VMService_CancelStream"; 35 patch void _vmCancelStream(String streamId) native "VMService_CancelStream";
36 patch Uint8List _requestAssets() native "VMService_RequestAssets"; 36 patch Uint8List _requestAssets() native "VMService_RequestAssets";
37 patch void _spawnUriNotify(obj, String token)
38 native "VMService_spawnUriNotify";
OLDNEW
« no previous file with comments | « runtime/lib/vmservice.cc ('k') | runtime/observatory/lib/src/service/object.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698