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

Side by Side Diff: runtime/observatory/lib/src/elements/isolate_summary.html

Issue 1756393002: Fix some service protocol isolate lifecycle races (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 <template> 48 <template>
49 <template if="{{ isolate.pauseEvent != null }}"> 49 <template if="{{ isolate.pauseEvent != null }}">
50 <template if="{{ isolate.pauseEvent.kind == 'PauseStart' }}"> 50 <template if="{{ isolate.pauseEvent.kind == 'PauseStart' }}">
51 at isolate start 51 at isolate start
52 </template> 52 </template>
53 53
54 <template if="{{ isolate.pauseEvent.kind == 'PauseExit' }}"> 54 <template if="{{ isolate.pauseEvent.kind == 'PauseExit' }}">
55 at isolate exit 55 at isolate exit
56 </template> 56 </template>
57 57
58 <template if="{{ isolate.pauseEvent.kind == 'None' }}">
59 not yet runnable
60 </template>
61
58 <template if="{{ isolate.pauseEvent.kind == 'PauseInterrupted' || 62 <template if="{{ isolate.pauseEvent.kind == 'PauseInterrupted' ||
59 isolate.pauseEvent.kind == 'PauseBreakpoint' || 63 isolate.pauseEvent.kind == 'PauseBreakpoint' ||
60 isolate.pauseEvent.kind == 'PauseException' }}"> 64 isolate.pauseEvent.kind == 'PauseException' }}">
61 <template if="{{ isolate.pauseEvent.breakpoint != null }}"> 65 <template if="{{ isolate.pauseEvent.breakpoint != null }}">
62 by breakpoint 66 by breakpoint
63 </template> 67 </template>
64 <template if="{{ isolate.pauseEvent.kind == 'PauseException' }}"> 68 <template if="{{ isolate.pauseEvent.kind == 'PauseException' }}">
65 by exception 69 by exception
66 </template> 70 </template>
67 <template if="{{ isolate.topFrame != null }}"> 71 <template if="{{ isolate.topFrame != null }}">
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 <div class="chart-wrapper" id="isolate-counter-chart"> 224 <div class="chart-wrapper" id="isolate-counter-chart">
221 <div class="chart-host-wrapper"> 225 <div class="chart-host-wrapper">
222 <div class="chart-host" id="isolate-counter-chart-host"></div> 226 <div class="chart-host" id="isolate-counter-chart-host"></div>
223 <div class="chart-legend-host" id="isolate-counter-chart-legend-host"></ div> 227 <div class="chart-legend-host" id="isolate-counter-chart-legend-host"></ div>
224 </div> 228 </div>
225 </div> 229 </div>
226 </template> 230 </template>
227 </polymer-element> 231 </polymer-element>
228 232
229 <script type="application/dart" src="isolate_summary.dart"></script> 233 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.dart ('k') | runtime/observatory/lib/src/service/object.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698