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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/isolate_list.html

Issue 184233007: Refactor Observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 <head> 1 <head>
2 <link rel="import" href="isolate_summary.html"> 2 <link rel="import" href="isolate_summary.html">
3 <link rel="import" href="nav_bar.html"> 3 <link rel="import" href="nav_bar.html">
4 <link rel="import" href="vm_element.html">
4 </head> 5 </head>
5 <polymer-element name="isolate-list" extends="observatory-element"> 6 <polymer-element name="isolate-list" extends="vm-element">
6 <template> 7 <template>
7 <nav-bar> 8 <nav-bar>
8 <top-nav-menu last="{{ true }}"></top-nav-menu> 9 <top-nav-menu last="{{ true }}"></top-nav-menu>
9 <!-- TODO(turnidge): Why doesn't "this.refresh" work? --> 10 <!-- TODO(turnidge): Why doesn't "this.refresh" work? -->
10 <nav-refresh callback="{{ refresh } }}"></nav-refresh> 11 <nav-refresh callback="{{ refresh } }}"></nav-refresh>
11 </nav-bar> 12 </nav-bar>
12 <ul class="list-group"> 13 <ul class="list-group">
13 <template repeat="{{ isolate in app.isolateManager.isolates.values }}"> 14 <template repeat="{{ isolate in vm.isolates.values }}">
14 <li class="list-group-item"> 15 <li class="list-group-item">
15 <isolate-summary app="{{ app }}" isolate="{{ isolate }}"></isolate-summa ry> 16 <isolate-summary isolate="{{ isolate }}"></isolate-summary>
16 </li> 17 </li>
17 </template> 18 </template>
18 </ul> 19 </ul>
19 (<a href="{{ app.locationManager.absoluteLink('cpu') }}">cpu</a>)
20 </template> 20 </template>
21 <script type="application/dart" src="isolate_list.dart"></script> 21 <script type="application/dart" src="isolate_list.dart"></script>
22 </polymer-element> 22 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698