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

Unified Diff: runtime/observatory/tests/service/steal_breakpoint_test.dart

Issue 1143783003: Add the streamListen and streamCancel rpcs to the vm service. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: before commit Created 5 years, 7 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/tests/service/steal_breakpoint_test.dart
diff --git a/runtime/observatory/tests/service/steal_breakpoint_test.dart b/runtime/observatory/tests/service/steal_breakpoint_test.dart
index 702bf93318d08733d773c91bb21b65a8f3ddeacb..cbd8005163e64e6201034cf4dff3ea281d47c466 100644
--- a/runtime/observatory/tests/service/steal_breakpoint_test.dart
+++ b/runtime/observatory/tests/service/steal_breakpoint_test.dart
@@ -30,7 +30,7 @@ var tests = [
// Set up a listener to wait for breakpoint events.
Completer completer = new Completer();
var subscription;
- subscription = isolate.vm.events.stream.listen((ServiceEvent event) {
+ subscription = isolate.vm.debugEvents.listen((ServiceEvent event) {
if (event.eventType == ServiceEvent.kPauseBreakpoint) {
print('Isolate paused at breakpoint');
subscription.cancel();
@@ -62,7 +62,7 @@ var tests = [
(Isolate isolate) async {
Completer completer = new Completer();
var subscription;
- subscription = isolate.vm.events.stream.listen((ServiceEvent event) {
+ subscription = isolate.vm.debugEvents.listen((ServiceEvent event) {
if (event.eventType == ServiceEvent.kResume) {
print('Isolate resumed');
subscription.cancel();
« no previous file with comments | « runtime/observatory/tests/service/source_location_test.dart ('k') | runtime/observatory/tests/service/test_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698