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

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

Issue 50243002: Extend Observatory to display libraries, classes, fields, functions and code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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="disassembly_entry.html">
3 <link rel="import" href="observatory_element.html">
4 </head>
5 <polymer-element name="code-view" extends="observatory-element">
6 <template>
7 <div class="row">
8 <div class="col-md-8 col-md-offset-2">
9 <div class="{{ cssPanelClass }}">
10 <div class="panel-heading">
11 <a href="{{ app.locationManager.currentIsolateObjectLink(code['functio n']['id'])}}">
12 {{ code['function']['user_name'] }} ({{ code['function']['name'] }})
13 </a>
14 </div>
15 <div class="panel-body">
16 <div class="row">
17 <div class="col-md-2"><strong>Samples</strong></div>
18 <div class="col-md-2"><strong>Address</strong></div>
19 <div><strong>Instruction</strong></div>
20 </div>
21 <template repeat="{{ instruction in code['disassembly'] }}">
22 <disassembly-entry instruction="{{ instruction }}">
23 </disassembly-entry>
24 </template>
25 </div>
26 </div>
27 </div>
28 </div>
29 </template>
30 <script type="application/dart" src="code_view.dart"></script>
31 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698