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

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

Issue 1063063006: Add links to Observatory documentation and bug tracking. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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
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 6
6 <polymer-element name="heap-map" extends="observatory-element"> 7 <polymer-element name="heap-map" extends="observatory-element">
7 <template> 8 <template>
8 <link rel="stylesheet" href="css/shared.css"> 9 <link rel="stylesheet" href="css/shared.css">
9 <style> 10 <style>
10 .hover { 11 .hover {
11 position: fixed; 12 position: fixed;
12 z-index: 999; 13 z-index: 999;
13 height: 16px; 14 height: 16px;
14 width: 100%; 15 width: 100%;
(...skipping 12 matching lines...) Expand all
27 </nav-bar> 28 </nav-bar>
28 <div class="hover"> 29 <div class="hover">
29 <p style="text-align:center">{{ status }}</p> 30 <p style="text-align:center">{{ status }}</p>
30 </div> 31 </div>
31 <div class="spacer"> 32 <div class="spacer">
32 <!-- Make sure no data is covered by hover bar initially --> 33 <!-- Make sure no data is covered by hover bar initially -->
33 </div> 34 </div>
34 <div class="flex-row"> 35 <div class="flex-row">
35 <canvas id="fragmentation" width="1px" height="1px"></canvas> 36 <canvas id="fragmentation" width="1px" height="1px"></canvas>
36 </div> 37 </div>
38 <view-footer></view-footer>
37 </template> 39 </template>
38 </polymer-element> 40 </polymer-element>
39 41
40 <script type="application/dart" src="heap_map.dart"></script> 42 <script type="application/dart" src="heap_map.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/function_view.html ('k') | runtime/observatory/lib/src/elements/heap_profile.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698