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

Unified Diff: runtime/vm/debugger_test.cc

Issue 271153002: Add pause/resume for isolates in vmservice/observatory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 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
« no previous file with comments | « runtime/vm/debugger_api_impl.cc ('k') | runtime/vm/isolate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/debugger_test.cc
diff --git a/runtime/vm/debugger_test.cc b/runtime/vm/debugger_test.cc
index 820c5db1400237c14eb1d3e33b84e5a2e83d5954..d9c508b23bf3dcb8dae7be5a2db9530fc10bb300 100644
--- a/runtime/vm/debugger_test.cc
+++ b/runtime/vm/debugger_test.cc
@@ -65,9 +65,9 @@ static void InspectPausedEvent(Dart_IsolateId isolate_id,
// The debugger knows that it is paused, and why.
EXPECT(debugger->IsPaused());
- const Debugger::DebuggerEvent* event = debugger->PauseEvent();
+ const DebuggerEvent* event = debugger->PauseEvent();
EXPECT(event != NULL);
- EXPECT(event->type == Debugger::kBreakpointReached);
+ EXPECT(event->type() == DebuggerEvent::kBreakpointReached);
saw_paused_event = true;
}
« no previous file with comments | « runtime/vm/debugger_api_impl.cc ('k') | runtime/vm/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698