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

Unified Diff: runtime/observatory/lib/src/elements/isolate_summary.dart

Issue 979823003: Major rework of vm service events. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
Index: runtime/observatory/lib/src/elements/isolate_summary.dart
diff --git a/runtime/observatory/lib/src/elements/isolate_summary.dart b/runtime/observatory/lib/src/elements/isolate_summary.dart
index 07d647a02d01506396ae0014274335558beb6013..cefc3733d99e48403231d048e10bd6f61c3ffdbd 100644
--- a/runtime/observatory/lib/src/elements/isolate_summary.dart
+++ b/runtime/observatory/lib/src/elements/isolate_summary.dart
@@ -22,26 +22,6 @@ class IsolateRunStateElement extends ObservatoryElement {
IsolateRunStateElement.created() : super.created();
@published Isolate isolate;
-
- Future pause(_) {
- return isolate.pause();
- }
- Future resume(_) {
- app.removePauseEvents(isolate);
- return isolate.resume();
- }
- Future stepInto(_) {
- app.removePauseEvents(isolate);
- return isolate.stepInto();
- }
- Future stepOver(_) {
- app.removePauseEvents(isolate);
- return isolate.stepOver();
- }
- Future stepOut(_) {
- app.removePauseEvents(isolate);
- return isolate.stepOut();
- }
}
@CustomTag('isolate-location')
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.dart ('k') | runtime/observatory/lib/src/elements/isolate_summary.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698