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

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

Issue 1311503004: Remember when an isolate was paused and subtly display it in Obseravatory (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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 27 matching lines...) Expand all
38 </div> 38 </div>
39 39
40 <isolate-shared-summary isolate="{{ isolate }}"></isolate-shared-summary> 40 <isolate-shared-summary isolate="{{ isolate }}"></isolate-shared-summary>
41 41
42 </template> 42 </template>
43 </polymer-element> 43 </polymer-element>
44 44
45 <polymer-element name="isolate-run-state" extends="observatory-element"> 45 <polymer-element name="isolate-run-state" extends="observatory-element">
46 <template> 46 <template>
47 <template if="{{ isolate.paused }}"> 47 <template if="{{ isolate.paused }}">
48 <strong>paused</strong> 48 <strong title="{{ isolate.pauseEvent.timestamp.toString() }}">paused</stro ng>
49 </template> 49 </template>
50 50
51 <template if="{{ isolate.running }}"> 51 <template if="{{ isolate.running }}">
52 <strong>running</strong> 52 <strong>running</strong>
53 </template> 53 </template>
54 54
55 <template if="{{ isolate.idle }}"> 55 <template if="{{ isolate.idle }}">
56 <strong>idle</strong> 56 <strong>idle</strong>
57 </template> 57 </template>
58 58
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 </template> 212 </template>
213 </polymer-element> 213 </polymer-element>
214 214
215 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 215 <polymer-element name="isolate-counter-chart" extends="observatory-element">
216 <template> 216 <template>
217 <div id="counterPieChart" style="height: 200px"></div> 217 <div id="counterPieChart" style="height: 200px"></div>
218 </template> 218 </template>
219 </polymer-element> 219 </polymer-element>
220 220
221 <script type="application/dart" src="isolate_summary.dart"></script> 221 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW
« no previous file with comments | « no previous file | runtime/observatory/lib/src/service/object.dart » ('j') | runtime/vm/service/service.md » ('J')

Powered by Google App Engine
This is Rietveld 408576698