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

Side by Side Diff: runtime/bin/vmservice/client/deployed/web/index.html

Issue 350573002: Make retained size human-readable. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 6 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/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html><html><head> 1 <!DOCTYPE html><html><head>
2 <meta charset="utf-8"> 2 <meta charset="utf-8">
3 <title>Dart VM Observatory</title> 3 <title>Dart VM Observatory</title>
4 4
5 5
6 6
7 7
8 8
9 9
10 10
(...skipping 3836 matching lines...) Expand 10 before | Expand all | Expand 10 after
3847 </template> 3847 </template>
3848 </div> 3848 </div>
3849 </curly-block><br><br> 3849 </curly-block><br><br>
3850 </template> 3850 </template>
3851 3851
3852 <template if="{{ !cls.hasNoAllocations }}"> 3852 <template if="{{ !cls.hasNoAllocations }}">
3853 current instances ({{ cls.newSpace.current.instances + cls.oldSpace.curr ent.instances }}) 3853 current instances ({{ cls.newSpace.current.instances + cls.oldSpace.curr ent.instances }})
3854 <div class="memberItem"> 3854 <div class="memberItem">
3855 <div class="memberName">shallow size</div> 3855 <div class="memberName">shallow size</div>
3856 <div class="memberValue"> 3856 <div class="memberValue">
3857 {{ cls.newSpace.current.bytes + cls.oldSpace.current.bytes }} 3857 {{ cls.newSpace.current.bytes + cls.oldSpace.current.bytes | forma tSize }}
3858 </div> 3858 </div>
3859 </div> 3859 </div>
3860 <div class="memberItem"> 3860 <div class="memberItem">
3861 <div class="memberName">retained size</div> 3861 <div class="memberName">retained size</div>
3862 <div class="memberValue"> 3862 <div class="memberValue">
3863 <eval-link callback="{{ retainedSize }}"></eval-link> 3863 <template if="{{ retainedBytes == null }}">
3864 <eval-link callback="{{ retainedSize }}" label="[calculate]">
3865 </eval-link>
3866 </template>
3867 <template if="{{ retainedBytes != null }}">
3868 {{ retainedBytes | formatSize }}
3869 </template>
3864 </div> 3870 </div>
3865 </div> 3871 </div>
3866 </template> 3872 </template>
3867 </div> 3873 </div>
3868 3874
3869 <hr> 3875 <hr>
3870 3876
3871 <div class="content"> 3877 <div class="content">
3872 <eval-box callback="{{ eval }}"></eval-box> 3878 <eval-box callback="{{ eval }}"></eval-box>
3873 </div> 3879 </div>
(...skipping 9530 matching lines...) Expand 10 before | Expand all | Expand 10 after
13404 <div class="memberValue">{{ instance['valueAsString'] }}</div> 13410 <div class="memberValue">{{ instance['valueAsString'] }}</div>
13405 </div> 13411 </div>
13406 </template> 13412 </template>
13407 <div class="memberItem"> 13413 <div class="memberItem">
13408 <div class="memberName">size</div> 13414 <div class="memberName">size</div>
13409 <div class="memberValue">{{ instance['size'] | formatSize }}</div> 13415 <div class="memberValue">{{ instance['size'] | formatSize }}</div>
13410 </div> 13416 </div>
13411 <div class="memberItem"> 13417 <div class="memberItem">
13412 <div class="memberName">retained size</div> 13418 <div class="memberName">retained size</div>
13413 <div class="memberValue"> 13419 <div class="memberValue">
13414 <eval-link callback="{{ retainedSize }}" label="[calculate]"> 13420 <template if="{{ retainedBytes == null }}">
13415 </eval-link> 13421 <eval-link callback="{{ retainedSize }}" label="[calculate]">
13422 </eval-link>
13423 </template>
13424 <template if="{{ retainedBytes != null }}">
13425 {{ retainedBytes | formatSize }}
13426 </template>
13416 </div> 13427 </div>
13417 </div> 13428 </div>
13418 <div class="memberItem"> 13429 <div class="memberItem">
13419 <div class="memberName">retaining path</div> 13430 <div class="memberName">retaining path</div>
13420 <div class="memberValue"> 13431 <div class="memberValue">
13421 <template if="{{ path == null }}"> 13432 <template if="{{ path == null }}">
13422 <eval-link callback="{{ retainingPath }}" label="[find]" expr="1 0"> 13433 <eval-link callback="{{ retainingPath }}" label="[find]" expr="1 0">
13423 </eval-link> 13434 </eval-link>
13424 </template> 13435 </template>
13425 <template if="{{ path != null }}"> 13436 <template if="{{ path != null }}">
(...skipping 3082 matching lines...) Expand 10 before | Expand all | Expand 10 after
16508 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a> 16519 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a>
16509 </template> 16520 </template>
16510 </polymer-element> 16521 </polymer-element>
16511 16522
16512 16523
16513 16524
16514 16525
16515 <observatory-application></observatory-application> 16526 <observatory-application></observatory-application>
16516 16527
16517 <script type="application/dart" src="index.html_bootstrap.dart"></script><script src="packages/browser/dart.js"></script></body></html> 16528 <script type="application/dart" src="index.html_bootstrap.dart"></script><script src="packages/browser/dart.js"></script></body></html>
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698