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

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

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.html
diff --git a/runtime/observatory/lib/src/elements/isolate_summary.html b/runtime/observatory/lib/src/elements/isolate_summary.html
index cd29e17eaec8562531ab88c180e3f35588adf460..89ea8481f156497837621ef127a4ba0a984357d2 100644
--- a/runtime/observatory/lib/src/elements/isolate_summary.html
+++ b/runtime/observatory/lib/src/elements/isolate_summary.html
@@ -41,7 +41,7 @@
<polymer-element name="isolate-run-state" extends="observatory-element">
<template>
- <template if="{{ isolate.pauseEvent != null }}">
+ <template if="{{ isolate.paused }}">
<strong>paused</strong>
</template>
@@ -62,21 +62,21 @@
<polymer-element name="isolate-location" extends="observatory-element">
<template>
<template if="{{ isolate.pauseEvent != null }}">
- <template if="{{ isolate.pauseEvent.eventType == 'IsolateCreated' }}">
+ <template if="{{ isolate.pauseEvent.eventType == 'PauseStart' }}">
at isolate start
</template>
- <template if="{{ isolate.pauseEvent.eventType == 'IsolateShutdown' }}">
+ <template if="{{ isolate.pauseEvent.eventType == 'PauseExit' }}">
at isolate exit
</template>
- <template if="{{ isolate.pauseEvent.eventType == 'IsolateInterrupted' ||
- isolate.pauseEvent.eventType == 'BreakpointReached' ||
- isolate.pauseEvent.eventType == 'ExceptionThrown' }}">
+ <template if="{{ isolate.pauseEvent.eventType == 'PauseInterrupted' ||
+ isolate.pauseEvent.eventType == 'PauseBreakpoint' ||
+ isolate.pauseEvent.eventType == 'PauseException' }}">
<template if="{{ isolate.pauseEvent.breakpoint != null }}">
by breakpoint
</template>
- <template if="{{ isolate.pauseEvent.eventType == 'ExceptionThrown' }}">
+ <template if="{{ isolate.pauseEvent.eventType == 'PauseException' }}">
by exception
</template>
at
« no previous file with comments | « runtime/observatory/lib/src/elements/isolate_summary.dart ('k') | runtime/observatory/lib/src/elements/script_inset.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698