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

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

Issue 192443004: Complete the switch to ServiceObject (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="observatory_element.html">
5 <link rel="import" href="nav_bar.html"> 5 <link rel="import" href="nav_bar.html">
6 </head> 6 </head>
7 <polymer-element name="code-view" extends="isolate-element"> 7 <polymer-element name="code-view" extends="observatory-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 isolate="{{ isolate }}"></isolate-nav-menu> 11 <isolate-nav-menu isolate="{{ code.isolate }}"></isolate-nav-menu>
12 <nav-menu link="." anchor="{{ code.functionRef['user_name'] }}" last="{{ t rue }}"></nav-menu> 12 <nav-menu link="." anchor="{{ code.name }}" last="{{ true }}"></nav-menu>
13 <!-- TODO(turnidge): Implement code refresh --> 13 <nav-refresh callback="{{ refresh }}">
14 </nav-bar> 14 </nav-bar>
15 15
16 <div class="row"> 16 <div class="row">
17 <div class="col-md-8 col-md-offset-2"> 17 <div class="col-md-8 col-md-offset-2">
18 <div class="{{ cssPanelClass }}"> 18 <div class="{{ cssPanelClass }}">
19 <div class="panel-heading"> 19 <div class="panel-heading">
20 <function-ref isolate="{{ isolate }}" ref="{{ code.functionRef }}"></f unction-ref> 20 <span>Disassembled code for function: </span>
21 <function-ref ref="{{ code.function }}"></function-ref>
21 </div> 22 </div>
22 <div class="panel-body"> 23 <div class="panel-body">
23 <div class="row"> 24 <div class="row">
24 <div class="col-md-2"><strong>Samples</strong></div>
25 <div class="col-md-2"><strong>Address</strong></div> 25 <div class="col-md-2"><strong>Address</strong></div>
26 <div><strong>Instruction</strong></div> 26 <div class="col-md-2"><strong>Inclusive</strong></div>
27 <div class="col-md-2"><strong>Exclusive</strong></div>
28 <div class="col-md-6"><strong>Disassembly</strong></div>
27 </div> 29 </div>
28 <template repeat="{{ instruction in code.instructions }}"> 30 <template repeat="{{ instruction in code.instructions }}">
29 <disassembly-entry instruction="{{ instruction }}"> 31 <disassembly-entry code="{{ code }}" instruction="{{ instruction }}" >
30 </disassembly-entry> 32 </disassembly-entry>
31 </template> 33 </template>
32 </div> 34 </div>
33 </div> 35 </div>
34 </div> 36 </div>
35 </div> 37 </div>
36 </template> 38 </template>
37 <script type="application/dart" src="code_view.dart"></script> 39 <script type="application/dart" src="code_view.dart"></script>
38 </polymer-element> 40 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698