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

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

Issue 206213004: Add a VM page to the 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
(Empty)
1 <head>
2 <link rel="import" href="isolate_summary.html">
3 <link rel="import" href="nav_bar.html">
4 <link rel="import" href="observatory_element.html">
5 </head>
6 <polymer-element name="isolate-list" extends="observatory-element">
7 <template>
8 <nav-bar>
9 <top-nav-menu last="{{ true }}"></top-nav-menu>
10 <!-- TODO(turnidge): Why doesn't "this.refresh" work? -->
11 <nav-refresh callback="{{ refresh } }}"></nav-refresh>
12 </nav-bar>
13 <ul class="list-group">
14 <template repeat="{{ isolate in isolates.isolates.values }}">
15 <li class="list-group-item">
16 <isolate-summary isolate="{{ isolate }}"></isolate-summary>
17 </li>
18 </template>
19 </ul>
20 </template>
21 <script type="application/dart" src="isolate_list.dart"></script>
22 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698