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

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

Issue 194503006: Code view tweaks and crasher fix (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
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="observatory_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="observatory-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="{{ code.isolate }}"></isolate-nav-menu> 11 <isolate-nav-menu isolate="{{ code.isolate }}"></isolate-nav-menu>
12 <nav-menu link="." anchor="{{ code.name }}" last="{{ true }}"></nav-menu> 12 <nav-menu link="." anchor="{{ code.name }}" last="{{ true }}"></nav-menu>
13 <nav-refresh callback="{{ refresh }}"></nav-refresh> 13 <nav-refresh callback="{{ refresh }}"></nav-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 <span>Disassembled code for function: </span> 20 <span>Disassembled code for function: </span>
21 <function-ref ref="{{ code.function }}"></function-ref> 21 <function-ref ref="{{ code.function }}"></function-ref>
22 </div> 22 </div>
23 <div class="panel-body"> 23 <div class="panel-body">
24 <div class="row"> 24 <div class="row">
25 <div class="col-md-2"><strong>Address</strong></div>
26 <div class="col-md-2"><strong>Inclusive</strong></div> 25 <div class="col-md-2"><strong>Inclusive</strong></div>
27 <div class="col-md-2"><strong>Exclusive</strong></div> 26 <div class="col-md-2"><strong>Exclusive</strong></div>
27 <div class="col-md-2"><strong>Address</strong></div>
28 <div class="col-md-6"><strong>Disassembly</strong></div> 28 <div class="col-md-6"><strong>Disassembly</strong></div>
29 </div> 29 </div>
30 <template repeat="{{ instruction in code.instructions }}"> 30 <template repeat="{{ instruction in code.instructions }}">
31 <disassembly-entry code="{{ code }}" instruction="{{ instruction }}" > 31 <disassembly-entry code="{{ code }}" instruction="{{ instruction }}" >
32 </disassembly-entry> 32 </disassembly-entry>
33 </template> 33 </template>
34 </div> 34 </div>
35 </div> 35 </div>
36 </div> 36 </div>
37 </div> 37 </div>
38 </template> 38 </template>
39 <script type="application/dart" src="code_view.dart"></script> 39 <script type="application/dart" src="code_view.dart"></script>
40 </polymer-element> 40 </polymer-element>
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698