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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/observatory_elements/stack_trace.html

Issue 27530002: Reorganize VM Service client (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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="observatory_element.html"> 2 <link rel="import" href="observatory_element.html">
3 </head> 3 </head>
4 <polymer-element name="stack-trace" extends="observatory-element"> 4 <polymer-element name="stack-trace" extends="observatory-element">
5 <template> 5 <template>
6 <div class="alert alert-info">Stack Trace</div> 6 <div class="alert alert-info">Stack Trace</div>
7 <table class="table table-hover"> 7 <table class="table table-hover">
8 <thead> 8 <thead>
9 <tr> 9 <tr>
10 <th>Depth</th> 10 <th>Depth</th>
11 <th>Function</th> 11 <th>Function</th>
12 <th>Url</th> 12 <th>Url</th>
13 <th>Line</th> 13 <th>Line</th>
14 </tr> 14 </tr>
15 </thead> 15 </thead>
16 <tbody> 16 <tbody>
17 <tr template repeat="{{ frame in trace['members'] }}"> 17 <tr template repeat="{{ frame in trace['members'] }}">
18 <td>{{$index}}</td> 18 <td>{{$index}}</td>
19 <td>{{ frame['name'] }}</td> 19 <td>{{ frame['name'] }}</td>
20 <td>{{ frame['url'] }}</td> 20 <td>{{ frame['url'] }}</td>
21 <td>{{ frame['line'] }}</td> 21 <td>{{ frame['line'] }}</td>
22 </tr> 22 </tr>
23 </tbody> 23 </tbody>
24 </table> 24 </table>
25 </template> 25 </template>
26 <script type="application/dart" src="stack_trace.dart"></script> 26 <script type="application/dart" src="stack_trace.dart"></script>
27 </polymer-element> 27 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698