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

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

Issue 1270603003: Bump the VM service protocol version to 2.0. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/service.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/service/service.md
diff --git a/runtime/vm/service/service.md b/runtime/vm/service/service.md
index 347f12d8f77bc953cfdd6d435cccb3e86264e8d9..f05214dc5ab60f61e06a3c3efbb1ce972f57dbfb 100644
--- a/runtime/vm/service/service.md
+++ b/runtime/vm/service/service.md
@@ -1,10 +1,9 @@
-# Dart VM Service Protocol 1.0 (Draft 1)
+# Dart VM Service Protocol 2.0
> Please post feedback to the [observatory-discuss group][discuss-list]
-This document describes _draft 1_ of _version 1.0_ of the Dart VM
-Service Protocol. This protocol is used to communicate with a running
-Dart Virtual Machine.
+This document describes of _version 2.0_ of the Dart VM Service Protocol. This
+protocol is used to communicate with a running Dart Virtual Machine.
To use the Service Protocol, start the VM with the *--observe* flag.
The VM will start a webserver which services protocol requests via WebSocket.
@@ -110,7 +109,7 @@ Here is an example response for our [getVersion](#getversion) request above:
"jsonrpc": "2.0",
"result": {
"type": "Version",
- "major": 1,
+ "major": 2,
"minor": 0
}
"id": "1"
@@ -300,7 +299,7 @@ version number:
```
"result": {
"type": "Version",
- "major": 1,
+ "major": 2,
"minor": 0
}
```
« no previous file with comments | « runtime/vm/service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698