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

Side by Side Diff: runtime/observatory/lib/src/elements/class_view.html

Issue 1212933003: Observatory improvements for exploring compiled code. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
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="eval_link.html"> 4 <link rel="import" href="eval_link.html">
5 <link rel="import" href="field_ref.html"> 5 <link rel="import" href="field_ref.html">
6 <link rel="import" href="function_ref.html"> 6 <link rel="import" href="function_ref.html">
7 <link rel="import" href="instance_ref.html"> 7 <link rel="import" href="instance_ref.html">
8 <link rel="import" href="library_ref.html"> 8 <link rel="import" href="library_ref.html">
9 <link rel="import" href="nav_bar.html"> 9 <link rel="import" href="nav_bar.html">
10 <link rel="import" href="observatory_element.html"> 10 <link rel="import" href="observatory_element.html">
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 <div class="memberItem"> 189 <div class="memberItem">
190 <div class="memberName">toplist by retained memory</div> 190 <div class="memberName">toplist by retained memory</div>
191 <div class="memberValue"> 191 <div class="memberValue">
192 <template if="{{ mostRetained == null }}"> 192 <template if="{{ mostRetained == null }}">
193 <eval-link callback="{{ retainedToplist }}" 193 <eval-link callback="{{ retainedToplist }}"
194 label="[find]"> 194 label="[find]">
195 </eval-link> 195 </eval-link>
196 </template> 196 </template>
197 <template if="{{ mostRetained != null }}"> 197 <template if="{{ mostRetained != null }}">
198 <template repeat="{{ most in mostRetained }}"> 198 <template repeat="{{ most in mostRetained }}">
199 {{ most.retainedSize | formatSize }}<instance-ref ref="{{ most }}"></instance-ref><br> 199 {{ most.retainedSize | formatSize }}<any-service-ref ref="{{ m ost }}"></any-service-ref><br>
200 </template> 200 </template>
201 </template> 201 </template>
202 </div> 202 </div>
203 </div> 203 </div>
204 </template> 204 </template>
205 </div> 205 </div>
206 206
207 <hr> 207 <hr>
208 208
209 <div class="content-centered-big"> 209 <div class="content-centered-big">
210 <source-inset location="{{ cls.location }}"> 210 <source-inset location="{{ cls.location }}">
211 </source-inset> 211 </source-inset>
212 </div> 212 </div>
213 213
214 <view-footer></view-footer> 214 <view-footer></view-footer>
215 </template> 215 </template>
216 </polymer-element> 216 </polymer-element>
217 217
218 <script type="application/dart" src="class_view.dart"></script> 218 <script type="application/dart" src="class_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/elements.html ('k') | runtime/observatory/lib/src/elements/code_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698