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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/heap_profile.html

Issue 192443004: Complete the switch to ServiceObject (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 <head> 1 <head>
2 <link rel="import" href="class_ref.html"> 2 <link rel="import" href="class_ref.html">
3 <link rel="import" href="isolate_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 </head> 5 </head>
6 <polymer-element name="heap-profile" extends="isolate-element"> 6 <polymer-element name="heap-profile" extends="observatory-element">
7 <template> 7 <template>
8 <nav-bar> 8 <nav-bar>
9 <top-nav-menu></top-nav-menu> 9 <top-nav-menu></top-nav-menu>
10 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu> 10 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu>
11 <nav-menu link="." anchor="heap profile" last="{{ true }}"></nav-menu> 11 <nav-menu link="." anchor="heap profile" last="{{ true }}"></nav-menu>
12 <nav-refresh callback="{{ refresh }}"></nav-refresh> 12 <nav-refresh callback="{{ refresh }}"></nav-refresh>
13 </nav-bar> 13 </nav-bar>
14 14
15 <button type="button" on-click="{{resetAccumulator}}">Reset Accumulator</butto n> 15 <button type="button" on-click="{{resetAccumulator}}">Reset Accumulator</butto n>
16 <div class="row"> 16 <div class="row">
17 <div id="newPieChart" class="col-md-4" style="height: 400px"> 17 <div id="newPieChart" class="col-md-4" style="height: 400px">
18 </div> 18 </div>
19 <div id="newStatus" class="col-md-2"> 19 <div id="newStatus" class="col-md-2">
20 <table class="table"> 20 <table class="table">
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 </div> 63 </div>
64 <div class="row"> 64 <div class="row">
65 <p class="col-md-2">Individual heap table</p> 65 <p class="col-md-2">Individual heap table</p>
66 </div> 66 </div>
67 <div class="row"> 67 <div class="row">
68 <div id="table" class="col-md-12" style="height: 800px"></div> 68 <div id="table" class="col-md-12" style="height: 800px"></div>
69 </div> 69 </div>
70 </template> 70 </template>
71 <script type="application/dart" src="heap_profile.dart"></script> 71 <script type="application/dart" src="heap_profile.dart"></script>
72 </polymer-element> 72 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698