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

Side by Side 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, 6 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="action_link.html"> 2 <link rel="import" href="action_link.html">
3 <link rel="import" href="function_ref.html"> 3 <link rel="import" href="function_ref.html">
4 <link rel="import" href="isolate_ref.html"> 4 <link rel="import" href="isolate_ref.html">
5 <link rel="import" href="observatory_element.html"> 5 <link rel="import" href="observatory_element.html">
6 <link rel="import" href="script_inset.html"> 6 <link rel="import" href="script_inset.html">
7 <link rel="import" href="script_ref.html"> 7 <link rel="import" href="script_ref.html">
8 <polymer-element name="isolate-summary" extends="observatory-element"> 8 <polymer-element name="isolate-summary" extends="observatory-element">
9 <template> 9 <template>
10 <link rel="stylesheet" href="css/shared.css"> 10 <link rel="stylesheet" href="css/shared.css">
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 <template if="{{ isolate.loading }}"> 59 <template if="{{ isolate.loading }}">
60 <strong>loading...</strong> 60 <strong>loading...</strong>
61 </template> 61 </template>
62 </template> 62 </template>
63 </polymer-element> 63 </polymer-element>
64 64
65 <polymer-element name="isolate-location" extends="observatory-element"> 65 <polymer-element name="isolate-location" extends="observatory-element">
66 <template> 66 <template>
67 <template if="{{ isolate.pauseEvent != null }}"> 67 <template if="{{ isolate.pauseEvent != null }}">
68 <template if="{{ isolate.pauseEvent.eventType == 'PauseStart' }}"> 68 <template if="{{ isolate.pauseEvent.kind == 'PauseStart' }}">
69 at isolate start 69 at isolate start
70 </template> 70 </template>
71 71
72 <template if="{{ isolate.pauseEvent.eventType == 'PauseExit' }}"> 72 <template if="{{ isolate.pauseEvent.kind == 'PauseExit' }}">
73 at isolate exit 73 at isolate exit
74 </template> 74 </template>
75 75
76 <template if="{{ isolate.pauseEvent.eventType == 'PauseInterrupted' || 76 <template if="{{ isolate.pauseEvent.kind == 'PauseInterrupted' ||
77 isolate.pauseEvent.eventType == 'PauseBreakpoint' || 77 isolate.pauseEvent.kind == 'PauseBreakpoint' ||
78 isolate.pauseEvent.eventType == 'PauseException' }}"> 78 isolate.pauseEvent.kind == 'PauseException' }}">
79 <template if="{{ isolate.pauseEvent.breakpoint != null }}"> 79 <template if="{{ isolate.pauseEvent.breakpoint != null }}">
80 by breakpoint 80 by breakpoint
81 </template> 81 </template>
82 <template if="{{ isolate.pauseEvent.eventType == 'PauseException' }}"> 82 <template if="{{ isolate.pauseEvent.kind == 'PauseException' }}">
83 by exception 83 by exception
84 </template> 84 </template>
85 at 85 at
86 <function-ref ref="{{ isolate.topFrame['function'] }}"> 86 <function-ref ref="{{ isolate.topFrame['function'] }}">
87 </function-ref> 87 </function-ref>
88 (<script-ref ref="{{ isolate.topFrame['script'] }}" 88 (<script-ref ref="{{ isolate.topFrame['script'] }}"
89 pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>) 89 pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>)
90 </template> 90 </template>
91 </template> 91 </template>
92 92
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 </template> 203 </template>
204 </polymer-element> 204 </polymer-element>
205 205
206 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 206 <polymer-element name="isolate-counter-chart" extends="observatory-element">
207 <template> 207 <template>
208 <div id="counterPieChart" style="height: 200px"></div> 208 <div id="counterPieChart" style="height: 200px"></div>
209 </template> 209 </template>
210 </polymer-element> 210 </polymer-element>
211 211
212 <script type="application/dart" src="isolate_summary.dart"></script> 212 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW
« 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