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

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

Issue 205713004: Add isolate tag-profile and better handling of errors (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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="curly_block.html"> 2 <link rel="import" href="curly_block.html">
3 <link rel="import" href="eval_box.html"> 3 <link rel="import" href="eval_box.html">
4 <link rel="import" href="function_ref.html"> 4 <link rel="import" href="function_ref.html">
5 <link rel="import" href="library_ref.html"> 5 <link rel="import" href="library_ref.html">
6 <link rel="import" href="nav_bar.html"> 6 <link rel="import" href="nav_bar.html">
7 <link rel="import" href="observatory_element.html"> 7 <link rel="import" href="observatory_element.html">
8 <link rel="import" href="script_ref.html"> 8 <link rel="import" href="script_ref.html">
9 </head> 9 </head>
10 <polymer-element name="isolate-view" extends="observatory-element"> 10 <polymer-element name="isolate-view" extends="observatory-element">
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 </template> 72 </template>
73 73
74 <template if="{{ isolate.idle }}"> 74 <template if="{{ isolate.idle }}">
75 <strong>idle</strong> 75 <strong>idle</strong>
76 </template> 76 </template>
77 </div> 77 </div>
78 </div> 78 </div>
79 </div> 79 </div>
80 </div> 80 </div>
81 81
82 <template if="{{ isolate.error != null }}">
83 <div class="content">
84 <h1>Error</h1>
85 <div class="memberList">
86 <div class="memberItem">
87 <div class="memberName">message</div>
88 <div class="memberValue">
89 <pre>{{ isolate.error.message }}</pre>
90 </div>
91 </div>
92 <div class="memberItem">
93 <template if="{{ isolate.error.exception != null }}">
94 <div class="memberName">exception</div>
95 <div class="memberValue">
96 <instance-ref ref="{{ isolate.error.exception }}"></instance-ref >
97 </div>
98 </template>
99 </div>
100 <div class="memberItem">
101 <template if="{{ isolate.error.stacktrace != null }}">
102 <div class="memberName">stacktrace</div>
103 <div class="memberValue">
104 <instance-ref ref="{{ isolate.error.stacktrace }}"></instance-ref>
105 </div>
106 </template>
107 </div>
108 </div>
109 </div>
110 <hr>
111 </template>
112
82 <template if="{{ isolate.topFrame != null }}"> 113 <template if="{{ isolate.topFrame != null }}">
83 <br> 114 <br>
84 <div class="sourceInset"> 115 <div class="sourceInset">
85 <pre> 116 <pre>
86 {{ isolate.topFrame['line'] }} &nbsp; {{ isolate.topFrame['lineString' ] }}</pre> 117 {{ isolate.topFrame['line'] }} &nbsp; {{ isolate.topFrame['lineString' ] }}</pre>
87 </div> 118 </div>
88 </template> 119 </template>
89 120
90 <br> 121 <br>
91 122
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 <div class="memberValue"> 194 <div class="memberValue">
164 See <a href="{{ isolate.relativeHashLink('heapmap') }}">heap map</a> 195 See <a href="{{ isolate.relativeHashLink('heapmap') }}">heap map</a>
165 </div> 196 </div>
166 </div> 197 </div>
167 </div> 198 </div>
168 </div> 199 </div>
169 200
170 <hr> 201 <hr>
171 202
172 <div class="content"> 203 <div class="content">
204 <div id="tagProfileChart" class="col-md-8" style="height: 400px"></div>
205 </div>
206
207 <hr>
208
209 <div class="content">
173 <eval-box callback="{{ eval }}"></eval-box> 210 <eval-box callback="{{ eval }}"></eval-box>
174 </div> 211 </div>
175 <br><br><br><br> 212 <br><br><br><br>
176 <br><br><br><br> 213 <br><br><br><br>
177 </template> 214 </template>
178 <script type="application/dart" src="isolate_view.dart"></script> 215 <script type="application/dart" src="isolate_view.dart"></script>
179 </polymer-element> 216 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698