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

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

Issue 251043003: Observatory Display PC descriptors with disassembling (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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="isolate_ref.html"> 3 <link rel="import" href="isolate_ref.html">
4 <link rel="import" href="observatory_element.html"> 4 <link rel="import" href="observatory_element.html">
5 <link rel="import" href="script_inset.html"> 5 <link rel="import" href="script_inset.html">
6 <link rel="import" href="script_ref.html"> 6 <link rel="import" href="script_ref.html">
7 </head> 7 </head>
8 <polymer-element name="isolate-summary" extends="observatory-element"> 8 <polymer-element name="isolate-summary" extends="observatory-element">
9 <template> 9 <template>
10 <link rel="stylesheet" href="css/shared.css" /> 10 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.cs s">
11 <style> 11 <style>
12 .counters { 12 .counters {
13 display: flex; 13 display: flex;
14 flex-direction: row; 14 flex-direction: row;
15 justify-content: center; 15 justify-content: center;
16 } 16 }
17 .counter { 17 .counter {
18 margin: 10px; 18 margin: 10px;
19 } 19 }
20 </style> 20 </style>
21 <div class="flex-row"> 21 <div class="flex-row">
22 <div class="flex-item-fixed-1-12"><img src="img/isolate_icon.png"></div> 22 <div class="flex-item-fixed-1-12"><img src="packages/observatory/src/eleme nts/img/isolate_icon.png"></div>
23 <div class="flex-item-fixed-1-12">{{ isolate.mainPort }}</div> 23 <div class="flex-item-fixed-1-12">{{ isolate.mainPort }}</div>
24 <div class="flex-item-fixed-4-12"> 24 <div class="flex-item-fixed-4-12">
25 <div class="flex-row"> 25 <div class="flex-row">
26 <isolate-ref ref="{{ isolate }}"></isolate-ref> 26 <isolate-ref ref="{{ isolate }}"></isolate-ref>
27 </div> 27 </div>
28 <div class="flex-row"> 28 <div class="flex-row">
29 <small> 29 <small>
30 (<a href="{{ isolate.rootLib.hashLink }}">library</a>) 30 (<a href="{{ isolate.rootLib.hashLink }}">library</a>)
31 (<a href="{{ isolate.relativeHashLink('debug/breakpoints') }}">break points</a>) 31 (<a href="{{ isolate.relativeHashLink('debug/breakpoints') }}">break points</a>)
32 (<a href="{{ isolate.relativeHashLink('profile') }}">profile</a>) 32 (<a href="{{ isolate.relativeHashLink('profile') }}">profile</a>)
(...skipping 28 matching lines...) Expand all
61 <script-inset script="{{ isolate.topFrame['script'] }}" 61 <script-inset script="{{ isolate.topFrame['script'] }}"
62 pos="{{ isolate.topFrame['tokenPos'] }}"> 62 pos="{{ isolate.topFrame['tokenPos'] }}">
63 <function-ref ref="{{ isolate.topFrame['function'] }}"></function-ref> 63 <function-ref ref="{{ isolate.topFrame['function'] }}"></function-ref>
64 (<script-ref ref="{{ isolate.topFrame['script'] }}" 64 (<script-ref ref="{{ isolate.topFrame['script'] }}"
65 pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>) 65 pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>)
66 </script-inset> 66 </script-inset>
67 </template> 67 </template>
68 </template> 68 </template>
69 <script type="application/dart" src="isolate_summary.dart"></script> 69 <script type="application/dart" src="isolate_summary.dart"></script>
70 </polymer-element> 70 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698