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

Unified Diff: runtime/observatory/lib/service_html.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/observatory/lib/service_html.dart
diff --git a/runtime/observatory/lib/service_html.dart b/runtime/observatory/lib/service_html.dart
index da5a9759c43c68fc66202da1c02cd142852ba293..d51ef782bcfa8da9e8618abeafbdfae725817d17 100644
--- a/runtime/observatory/lib/service_html.dart
+++ b/runtime/observatory/lib/service_html.dart
@@ -100,4 +100,8 @@ class PostMessageVM extends VM {
window.parent.postMessage(JSON.encode(message), '*');
return completer.future;
}
+
+ Future<String> invokeRpcRaw(String method, Map params) {
+ throw 'not-implemented';
+ }
}

Powered by Google App Engine
This is Rietveld 408576698