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

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

Issue 2167053002: Converted Observatory nav-notify element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed template ciclic references that were blocking initialization Created 4 years, 5 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="class_ref.html"> 2 <link rel="import" href="class_ref.html">
3 <link rel="import" href="observatory_element.html"> 3
4 <link rel="import" href="nav_bar.html"> 4 <link rel="import" href="nav_bar.html">
5 5
6 <polymer-element name="heap-map" extends="observatory-element"> 6 <polymer-element name="heap-map">
7 <template> 7 <template>
8 <link rel="stylesheet" href="css/shared.css"> 8 <link rel="stylesheet" href="css/shared.css">
9 <style> 9 <style>
10 .hover { 10 .hover {
11 position: fixed; 11 position: fixed;
12 z-index: 999; 12 z-index: 999;
13 height: 16px; 13 height: 16px;
14 width: 100%; 14 width: 100%;
15 background: #ffffff; 15 background: #ffffff;
16 } 16 }
(...skipping 21 matching lines...) Expand all
38 <!-- Make sure no data is covered by hover bar initially --> 38 <!-- Make sure no data is covered by hover bar initially -->
39 </div> 39 </div>
40 <div class="flex-row"> 40 <div class="flex-row">
41 <canvas id="fragmentation" width="1px" height="1px"></canvas> 41 <canvas id="fragmentation" width="1px" height="1px"></canvas>
42 </div> 42 </div>
43 <view-footer></view-footer> 43 <view-footer></view-footer>
44 </template> 44 </template>
45 </polymer-element> 45 </polymer-element>
46 46
47 <script type="application/dart" src="heap_map.dart"></script> 47 <script type="application/dart" src="heap_map.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/general_error.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