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

Unified Diff: runtime/vm/service/service.idl

Issue 897193002: Finish moving service protocol to json rpc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 5 years, 10 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 | « runtime/vm/service/running_isolates.dart ('k') | runtime/vm/service/vmservice.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/service/service.idl
diff --git a/runtime/vm/service/service.idl b/runtime/vm/service/service.idl
index e91537814e81502cf4a3fe2f00271f86ae4e3ccb..0edb79bdc4545889dee824c4226faafb3f4f77c8 100644
--- a/runtime/vm/service/service.idl
+++ b/runtime/vm/service/service.idl
@@ -3,6 +3,17 @@
//
interface Service {
+ getVM() VM
+
+ getFlagList() FlagList
+
+ setFlag(name string, value string) Response
+
+ getObject(isolateId string, objectId string) Object
+
+ // The response is a subtype of Object or ObjectRef.
+ getObjectByAddress(address string, ref bool) Response
+
// Returns the list of breakpoints for an isolate.
getBreakpoints(isolateId string) BreakpointList
@@ -127,6 +138,16 @@ struct Response {
}
+struct VM extends Response {
+ placeholder int
+}
+
+
+struct FlagList extends Response {
+ placeholder int
+}
+
+
struct _EchoResponse extends Response {
text string
}
« no previous file with comments | « runtime/vm/service/running_isolates.dart ('k') | runtime/vm/service/vmservice.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698