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

Unified Diff: sdk/lib/vmservice/vmservice.dart

Issue 2946773002: Remove vmservice_patch.dart. (Closed)
Patch Set: Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/vmservice/message.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/vmservice/vmservice.dart
diff --git a/sdk/lib/vmservice/vmservice.dart b/sdk/lib/vmservice/vmservice.dart
index 18b424926583f93c56fbfa92d0a94c80740ee55c..5b60ad814c53ea14d677ce05a1ea7e7dde012713 100644
--- a/sdk/lib/vmservice/vmservice.dart
+++ b/sdk/lib/vmservice/vmservice.dart
@@ -480,22 +480,23 @@ void _registerIsolate(int port_id, SendPort sp, String name) {
}
/// Notify the VM that the service is running.
-external void _onStart();
+void _onStart() native "VMService_OnStart";
/// Notify the VM that the service is no longer running.
-external void _onExit();
+void _onExit() native "VMService_OnExit";
/// Notify the VM that the server's address has changed.
-external void onServerAddressChange(String address);
+void onServerAddressChange(String address)
+ native "VMService_OnServerAddressChange";
/// Subscribe to a service stream.
-external bool _vmListenStream(String streamId);
+bool _vmListenStream(String streamId) native "VMService_ListenStream";
/// Cancel a subscription to a service stream.
-external void _vmCancelStream(String streamId);
+void _vmCancelStream(String streamId) native "VMService_CancelStream";
/// Get the bytes to the tar archive.
-external Uint8List _requestAssets();
+Uint8List _requestAssets() native "VMService_RequestAssets";
/// Notify the vm service that an isolate has been spawned via rpc.
-external void _spawnUriNotify(obj, String token);
+void _spawnUriNotify(obj, String token) native "VMService_spawnUriNotify";
« no previous file with comments | « sdk/lib/vmservice/message.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698