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

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

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

Powered by Google App Engine
This is Rietveld 408576698