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

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

Issue 1310153002: Switch from Google charts to Charted (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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="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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 } 114 }
115 </style> 115 </style>
116 <link rel="stylesheet" href="css/shared.css"> 116 <link rel="stylesheet" href="css/shared.css">
117 <template if="{{ isolate.error != null }}"> 117 <template if="{{ isolate.error != null }}">
118 <div class="content-centered"> 118 <div class="content-centered">
119 <pre class="errorBox">{{ isolate.error.message }}</pre> 119 <pre class="errorBox">{{ isolate.error.message }}</pre>
120 <br> 120 <br>
121 </div> 121 </div>
122 </template> 122 </template>
123 <div class="flex-row"> 123 <div class="flex-row">
124 <div class="flex-item-10-percent"> 124 <div class="flex-item-50-percent">
125 </div>
126 <div class="flex-item-40-percent">
127 <isolate-counter-chart counters="{{ isolate.counters }}"></isolate-count er-chart> 125 <isolate-counter-chart counters="{{ isolate.counters }}"></isolate-count er-chart>
128 </div> 126 </div>
129 <div class="flex-item-40-percent"> 127 <div class="flex-item-40-percent">
130 <div class="memberList"> 128 <div class="memberList">
131 <div class="memberItem"> 129 <div class="memberItem">
132 <div class="memberName">new heap</div> 130 <div class="memberName">new heap</div>
133 <div class="memberValue"> 131 <div class="memberValue">
134 {{ isolate.newSpace.used | formatSize }} 132 {{ isolate.newSpace.used | formatSize }}
135 of 133 of
136 {{ isolate.newSpace.capacity | formatSize }} 134 {{ isolate.newSpace.capacity | formatSize }}
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 --> 205 -->
208 </div> 206 </div>
209 <div class="flex-item-10-percent"> 207 <div class="flex-item-10-percent">
210 </div> 208 </div>
211 </div> 209 </div>
212 </template> 210 </template>
213 </polymer-element> 211 </polymer-element>
214 212
215 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 213 <polymer-element name="isolate-counter-chart" extends="observatory-element">
216 <template> 214 <template>
217 <div id="counterPieChart" style="height: 200px"></div> 215 <link rel="stylesheet" href="../../../../packages/charted/charts/themes/quan tum_theme.css">
216 <style>
217 .chart-wrapper {
218 }
219
220 .chart-host-wrapper {
221 height: 200px;
222 }
223 .chart-legend-host {
224 max-height: 200px;
225 overflow-x: auto;
226 overflow-y: auto;
227 }
228 </style>
229 <div class="chart-wrapper" id="isolate-counter-chart">
230 <div class="chart-host-wrapper">
231 <div class="chart-host"></div>
232 <div class="chart-legend-host"></div>
233 </div>
234 </div>
218 </template> 235 </template>
219 </polymer-element> 236 </polymer-element>
220 237
221 <script type="application/dart" src="isolate_summary.dart"></script> 238 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/isolate_summary.dart ('k') | runtime/observatory/lib/src/elements/metrics.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698