| OLD | NEW |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
| 2 <link rel="import" href="action_link.html"> | 2 <link rel="import" href="action_link.html"> |
| 3 <link rel="import" href="function_ref.html"> | 3 <link rel="import" href="function_ref.html"> |
| 4 <link rel="import" href="isolate_ref.html"> | 4 <link rel="import" href="isolate_ref.html"> |
| 5 <link rel="import" href="observatory_element.html"> | 5 <link rel="import" href="observatory_element.html"> |
| 6 <link rel="import" href="script_inset.html"> | 6 <link rel="import" href="script_inset.html"> |
| 7 <link rel="import" href="script_ref.html"> | 7 <link rel="import" href="script_ref.html"> |
| 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="css/shared.css"> |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 <div class="memberValue"> | 145 <div class="memberValue"> |
| 146 {{ isolate.oldSpace.used | formatSize }} | 146 {{ isolate.oldSpace.used | formatSize }} |
| 147 of | 147 of |
| 148 {{ isolate.oldSpace.capacity | formatSize }} | 148 {{ isolate.oldSpace.capacity | formatSize }} |
| 149 </div> | 149 </div> |
| 150 </div> | 150 </div> |
| 151 </div> | 151 </div> |
| 152 <br> | 152 <br> |
| 153 <div class="memberItem"> | 153 <div class="memberItem"> |
| 154 <div class="memberValue"> | 154 <div class="memberValue"> |
| 155 See <a on-click="{{ goto }}" _href="{{ gotoLink('/debugger' + isolat
e.link) }}">debugger</a> |
| 156 </div> |
| 157 </div> |
| 158 <div class="memberItem"> |
| 159 <div class="memberValue"> |
| 155 See <a on-click="{{ goto }}" _href="{{ gotoLink('/class-tree' + isol
ate.link) }}">class hierarchy</a> | 160 See <a on-click="{{ goto }}" _href="{{ gotoLink('/class-tree' + isol
ate.link) }}">class hierarchy</a> |
| 156 </div> | 161 </div> |
| 157 </div> | 162 </div> |
| 158 <div class="memberItem"> | 163 <div class="memberItem"> |
| 159 <div class="memberValue"> | |
| 160 See <a on-click="{{ goto }}" _href="{{ gotoLink(isolate.relativeLink
('stacktrace')) }}">stack trace</a> | |
| 161 </div> | |
| 162 </div> | |
| 163 <div class="memberItem"> | |
| 164 <div class="memberValue"> | 164 <div class="memberValue"> |
| 165 See <a on-click="{{ goto }}" _href="{{ gotoLink(isolate.relativeLink
('profile')) }}">cpu profile</a> | 165 See <a on-click="{{ goto }}" _href="{{ gotoLink(isolate.relativeLink
('profile')) }}">cpu profile</a> |
| 166 </div> | 166 </div> |
| 167 </div> | 167 </div> |
| 168 <div class="memberItem"> | 168 <div class="memberItem"> |
| 169 <div class="memberValue"> | 169 <div class="memberValue"> |
| 170 See <a on-click="{{ goto }}" _href="{{ gotoLink(isolate.relativeLink
('allocationprofile')) }}">allocation profile</a> | 170 See <a on-click="{{ goto }}" _href="{{ gotoLink(isolate.relativeLink
('allocationprofile')) }}">allocation profile</a> |
| 171 </div> | 171 </div> |
| 172 </div> | 172 </div> |
| 173 <div class="memberItem"> | 173 <div class="memberItem"> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 196 </template> | 196 </template> |
| 197 </polymer-element> | 197 </polymer-element> |
| 198 | 198 |
| 199 <polymer-element name="isolate-counter-chart" extends="observatory-element"> | 199 <polymer-element name="isolate-counter-chart" extends="observatory-element"> |
| 200 <template> | 200 <template> |
| 201 <div id="counterPieChart" style="height: 200px"></div> | 201 <div id="counterPieChart" style="height: 200px"></div> |
| 202 </template> | 202 </template> |
| 203 </polymer-element> | 203 </polymer-element> |
| 204 | 204 |
| 205 <script type="application/dart" src="isolate_summary.dart"></script> | 205 <script type="application/dart" src="isolate_summary.dart"></script> |
| OLD | NEW |