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

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

Issue 1153193006: Standardize on using "kind" to distinguish sub-varieties of a type. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: doc changes 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/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 54817b1e449dc66325a0a67d719087ed782e0ea1..618b42ec59029ff0bfcdea42ed8fac9bc9d5f4ba 100644
--- a/runtime/observatory/lib/src/elements/isolate_summary.html
+++ b/runtime/observatory/lib/src/elements/isolate_summary.html
@@ -65,21 +65,21 @@
<polymer-element name="isolate-location" extends="observatory-element">
<template>
<template if="{{ isolate.pauseEvent != null }}">
- <template if="{{ isolate.pauseEvent.eventType == 'PauseStart' }}">
+ <template if="{{ isolate.pauseEvent.kind == 'PauseStart' }}">
at isolate start
</template>
- <template if="{{ isolate.pauseEvent.eventType == 'PauseExit' }}">
+ <template if="{{ isolate.pauseEvent.kind == 'PauseExit' }}">
at isolate exit
</template>
- <template if="{{ isolate.pauseEvent.eventType == 'PauseInterrupted' ||
- isolate.pauseEvent.eventType == 'PauseBreakpoint' ||
- isolate.pauseEvent.eventType == 'PauseException' }}">
+ <template if="{{ isolate.pauseEvent.kind == 'PauseInterrupted' ||
+ isolate.pauseEvent.kind == 'PauseBreakpoint' ||
+ isolate.pauseEvent.kind == 'PauseException' }}">
<template if="{{ isolate.pauseEvent.breakpoint != null }}">
by breakpoint
</template>
- <template if="{{ isolate.pauseEvent.eventType == 'PauseException' }}">
+ <template if="{{ isolate.pauseEvent.kind == 'PauseException' }}">
by exception
</template>
at
« no previous file with comments | « runtime/observatory/lib/src/elements/heap_profile.dart ('k') | runtime/observatory/lib/src/elements/nav_bar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698