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

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

Issue 1007863003: Allow Observatory debugger to switch isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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">
11 <div class="flex-row"> 11 <div class="flex-row">
12 <div class="flex-item-10-percent"> 12 <div class="flex-item-10-percent">
13 <img src="img/isolate_icon.png"> 13 <img src="img/isolate_icon.png">
14 </div> 14 </div>
15 <div class="flex-item-10-percent"> 15 <div class="flex-item-10-percent">
16 {{ isolate.number }}
17 </div>
18 <div class="flex-item-20-percent">
16 <isolate-ref ref="{{ isolate }}"></isolate-ref> 19 <isolate-ref ref="{{ isolate }}"></isolate-ref>
17 </div> 20 </div>
18 <div class="flex-item-10-percent"> 21 <div class="flex-item-10-percent">
19 <isolate-run-state isolate="{{ isolate }}"></isolate-run-state> 22 <isolate-run-state isolate="{{ isolate }}"></isolate-run-state>
20 </div> 23 </div>
21 <div class="flex-item-60-percent"> 24 <div class="flex-item-40-percent">
22 <isolate-location isolate="{{ isolate }}"></isolate-location> 25 <isolate-location isolate="{{ isolate }}"></isolate-location>
23 [<a on-click="{{ goto }}" _href="{{ gotoLink('/debugger', isolate) }}">d ebug</a>] 26 [<a on-click="{{ goto }}" _href="{{ gotoLink('/debugger', isolate) }}">d ebug</a>]
24 </div> 27 </div>
25 <div class="flex-item-10-percent"> 28 <div class="flex-item-10-percent">
26 </div> 29 </div>
27 </div> 30 </div>
28 31
29 <div class="flex-row"> 32 <div class="flex-row">
30 <div class="flex-item-20-percent"></div> 33 <div class="flex-item-20-percent"></div>
31 <div class="flex-item-60-percent"> 34 <div class="flex-item-60-percent">
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 </template> 193 </template>
191 </polymer-element> 194 </polymer-element>
192 195
193 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 196 <polymer-element name="isolate-counter-chart" extends="observatory-element">
194 <template> 197 <template>
195 <div id="counterPieChart" style="height: 200px"></div> 198 <div id="counterPieChart" style="height: 200px"></div>
196 </template> 199 </template>
197 </polymer-element> 200 </polymer-element>
198 201
199 <script type="application/dart" src="isolate_summary.dart"></script> 202 <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/elements/isolate_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698