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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/code_view.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="disassembly_entry.html"> 2 <link rel="import" href="disassembly_entry.html">
3 <link rel="import" href="function_ref.html"> 3 <link rel="import" href="function_ref.html">
4 <link rel="import" href="isolate_element.html">
4 <link rel="import" href="nav_bar.html"> 5 <link rel="import" href="nav_bar.html">
5 <link rel="import" href="observatory_element.html">
6 </head> 6 </head>
7 <polymer-element name="code-view" extends="observatory-element"> 7 <polymer-element name="code-view" extends="isolate-element">
8 <template> 8 <template>
9 <nav-bar> 9 <nav-bar>
10 <top-nav-menu></top-nav-menu> 10 <top-nav-menu></top-nav-menu>
11 <isolate-nav-menu app="{{ app }}" isolate="{{ app.locationManager.currentI solate() }}"> 11 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu>
12 </isolate-nav-menu>
13 <nav-menu link="." anchor="{{ code.functionRef['user_name'] }}" last="{{ t rue }}"></nav-menu> 12 <nav-menu link="." anchor="{{ code.functionRef['user_name'] }}" last="{{ t rue }}"></nav-menu>
14 <!-- TODO(turnidge): Implement code refresh --> 13 <!-- TODO(turnidge): Implement code refresh -->
15 </nav-bar> 14 </nav-bar>
16 15
17 <div class="row"> 16 <div class="row">
18 <div class="col-md-8 col-md-offset-2"> 17 <div class="col-md-8 col-md-offset-2">
19 <div class="{{ cssPanelClass }}"> 18 <div class="{{ cssPanelClass }}">
20 <div class="panel-heading"> 19 <div class="panel-heading">
21 <function-ref app="{{ app }}" ref="{{ code.functionRef }}"></function- ref> 20 <function-ref isolate="{{ isolate }}" ref="{{ code.functionRef }}"></f unction-ref>
22 </div> 21 </div>
23 <div class="panel-body"> 22 <div class="panel-body">
24 <div class="row"> 23 <div class="row">
25 <div class="col-md-2"><strong>Samples</strong></div> 24 <div class="col-md-2"><strong>Samples</strong></div>
26 <div class="col-md-2"><strong>Address</strong></div> 25 <div class="col-md-2"><strong>Address</strong></div>
27 <div><strong>Instruction</strong></div> 26 <div><strong>Instruction</strong></div>
28 </div> 27 </div>
29 <template repeat="{{ instruction in code.instructions }}"> 28 <template repeat="{{ instruction in code.instructions }}">
30 <disassembly-entry instruction="{{ instruction }}"> 29 <disassembly-entry instruction="{{ instruction }}">
31 </disassembly-entry> 30 </disassembly-entry>
32 </template> 31 </template>
33 </div> 32 </div>
34 </div> 33 </div>
35 </div> 34 </div>
36 </div> 35 </div>
37 </template> 36 </template>
38 <script type="application/dart" src="code_view.dart"></script> 37 <script type="application/dart" src="code_view.dart"></script>
39 </polymer-element> 38 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698