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

Unified Diff: runtime/bin/vmservice/vmservice_dartium.dart

Issue 823403004: Begin migrating the vm service from a rest-style interface to a json-rpc style interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fjkdls Created 5 years, 11 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
Index: runtime/bin/vmservice/vmservice_dartium.dart
diff --git a/runtime/bin/vmservice/vmservice_dartium.dart b/runtime/bin/vmservice/vmservice_dartium.dart
index 99f04fa8dbcf686e90d013159f8e8b7a9f481caf..6a1b7b79782688fa72d47b4ccec057d8720269c0 100644
--- a/runtime/bin/vmservice/vmservice_dartium.dart
+++ b/runtime/bin/vmservice/vmservice_dartium.dart
@@ -38,8 +38,8 @@ class DartiumClient extends Client {
});
}
- void post(var seq, String response) {
- postResponse(response, seq);
+ void post(var serial, String response) {
+ postResponse(response, serial);
}
dynamic toJson() {

Powered by Google App Engine
This is Rietveld 408576698