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

Side by Side 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, 9 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 | Annotate | Revision Log
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 23 matching lines...) Expand all
34 <div class="flex-item-20-percent"></div> 34 <div class="flex-item-20-percent"></div>
35 </div> 35 </div>
36 36
37 <isolate-shared-summary isolate="{{ isolate }}"></isolate-shared-summary> 37 <isolate-shared-summary isolate="{{ isolate }}"></isolate-shared-summary>
38 38
39 </template> 39 </template>
40 </polymer-element> 40 </polymer-element>
41 41
42 <polymer-element name="isolate-run-state" extends="observatory-element"> 42 <polymer-element name="isolate-run-state" extends="observatory-element">
43 <template> 43 <template>
44 <template if="{{ isolate.pauseEvent != null }}"> 44 <template if="{{ isolate.paused }}">
45 <strong>paused</strong> 45 <strong>paused</strong>
46 </template> 46 </template>
47 47
48 <template if="{{ isolate.running }}"> 48 <template if="{{ isolate.running }}">
49 <strong>running</strong> 49 <strong>running</strong>
50 </template> 50 </template>
51 51
52 <template if="{{ isolate.idle }}"> 52 <template if="{{ isolate.idle }}">
53 <strong>idle</strong> 53 <strong>idle</strong>
54 </template> 54 </template>
55 55
56 <template if="{{ isolate.loading }}"> 56 <template if="{{ isolate.loading }}">
57 <strong>loading...</strong> 57 <strong>loading...</strong>
58 </template> 58 </template>
59 </template> 59 </template>
60 </polymer-element> 60 </polymer-element>
61 61
62 <polymer-element name="isolate-location" extends="observatory-element"> 62 <polymer-element name="isolate-location" extends="observatory-element">
63 <template> 63 <template>
64 <template if="{{ isolate.pauseEvent != null }}"> 64 <template if="{{ isolate.pauseEvent != null }}">
65 <template if="{{ isolate.pauseEvent.eventType == 'IsolateCreated' }}"> 65 <template if="{{ isolate.pauseEvent.eventType == 'PauseStart' }}">
66 at isolate start 66 at isolate start
67 </template> 67 </template>
68 68
69 <template if="{{ isolate.pauseEvent.eventType == 'IsolateShutdown' }}"> 69 <template if="{{ isolate.pauseEvent.eventType == 'PauseExit' }}">
70 at isolate exit 70 at isolate exit
71 </template> 71 </template>
72 72
73 <template if="{{ isolate.pauseEvent.eventType == 'IsolateInterrupted' || 73 <template if="{{ isolate.pauseEvent.eventType == 'PauseInterrupted' ||
74 isolate.pauseEvent.eventType == 'BreakpointReached' || 74 isolate.pauseEvent.eventType == 'PauseBreakpoint' ||
75 isolate.pauseEvent.eventType == 'ExceptionThrown' }}"> 75 isolate.pauseEvent.eventType == 'PauseException' }}">
76 <template if="{{ isolate.pauseEvent.breakpoint != null }}"> 76 <template if="{{ isolate.pauseEvent.breakpoint != null }}">
77 by breakpoint 77 by breakpoint
78 </template> 78 </template>
79 <template if="{{ isolate.pauseEvent.eventType == 'ExceptionThrown' }}"> 79 <template if="{{ isolate.pauseEvent.eventType == 'PauseException' }}">
80 by exception 80 by exception
81 </template> 81 </template>
82 at 82 at
83 <function-ref ref="{{ isolate.topFrame['function'] }}"> 83 <function-ref ref="{{ isolate.topFrame['function'] }}">
84 </function-ref> 84 </function-ref>
85 (<script-ref ref="{{ isolate.topFrame['script'] }}" 85 (<script-ref ref="{{ isolate.topFrame['script'] }}"
86 pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>) 86 pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>)
87 </template> 87 </template>
88 </template> 88 </template>
89 89
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 </template> 190 </template>
191 </polymer-element> 191 </polymer-element>
192 192
193 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 193 <polymer-element name="isolate-counter-chart" extends="observatory-element">
194 <template> 194 <template>
195 <div id="counterPieChart" style="height: 200px"></div> 195 <div id="counterPieChart" style="height: 200px"></div>
196 </template> 196 </template>
197 </polymer-element> 197 </polymer-element>
198 198
199 <script type="application/dart" src="isolate_summary.dart"></script> 199 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW
« 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