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

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

Issue 1401763003: Shrink by 33% the allocation profile pie charts (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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="class_ref.html"> 2 <link rel="import" href="class_ref.html">
3 <link rel="import" href="observatory_element.html"> 3 <link rel="import" href="observatory_element.html">
4 <link rel="import" href="nav_bar.html"> 4 <link rel="import" href="nav_bar.html">
5 <link rel="import" href="view_footer.html"> 5 <link rel="import" href="view_footer.html">
6 6
7 <polymer-element name="heap-profile" extends="observatory-element"> 7 <polymer-element name="heap-profile" extends="observatory-element">
8 <template> 8 <template>
9 <link rel="stylesheet" href="css/shared.css"> 9 <link rel="stylesheet" href="css/shared.css">
10 <style> 10 <style>
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 margin: 3px; 50 margin: 3px;
51 padding: 8px; 51 padding: 8px;
52 } 52 }
53 </style> 53 </style>
54 <link rel="stylesheet" href="../../../../packages/charted/charts/themes/quantu m_theme.css"> 54 <link rel="stylesheet" href="../../../../packages/charted/charts/themes/quantu m_theme.css">
55 <style> 55 <style>
56 .chart-wrapper { 56 .chart-wrapper {
57 } 57 }
58 58
59 .chart-host-wrapper { 59 .chart-host-wrapper {
60 height: 300px; 60 height: 200px;
61 } 61 }
62 .chart-legend-host { 62 .chart-legend-host {
63 max-height: 300px; 63 max-height: 200px;
64 overflow-x: auto; 64 overflow-x: auto;
65 overflow-y: auto; 65 overflow-y: auto;
66 } 66 }
67 </style> 67 </style>
68 <nav-bar> 68 <nav-bar>
69 <top-nav-menu></top-nav-menu> 69 <top-nav-menu></top-nav-menu>
70 <vm-nav-menu vm="{{ profile.isolate.vm }}"></vm-nav-menu> 70 <vm-nav-menu vm="{{ profile.isolate.vm }}"></vm-nav-menu>
71 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> 71 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu>
72 <nav-menu link="{{ makeLink('/allocation-profiler', profile.isolate) }}" anc hor="allocation profile" last="{{ true }}"></nav-menu> 72 <nav-menu link="{{ makeLink('/allocation-profiler', profile.isolate) }}" anc hor="allocation profile" last="{{ true }}"></nav-menu>
73 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n av-refresh> 73 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n av-refresh>
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 </thead> 201 </thead>
202 <tbody id="classTableBody"> 202 <tbody id="classTableBody">
203 </tbody> 203 </tbody>
204 </table> 204 </table>
205 <view-footer></view-footer> 205 <view-footer></view-footer>
206 </div> 206 </div>
207 </template> 207 </template>
208 </polymer-element> 208 </polymer-element>
209 209
210 <script type="application/dart" src="heap_profile.dart"></script> 210 <script type="application/dart" src="heap_profile.dart"></script>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698