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

Unified Diff: runtime/bin/vmservice/client/lib/src/observatory_elements/heap_profile.html

Issue 184233007: Refactor Observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: runtime/bin/vmservice/client/lib/src/observatory_elements/heap_profile.html
diff --git a/runtime/bin/vmservice/client/lib/src/observatory_elements/heap_profile.html b/runtime/bin/vmservice/client/lib/src/observatory_elements/heap_profile.html
deleted file mode 100644
index 196427f2b26fdc8334397b7c191e4f22395a94f9..0000000000000000000000000000000000000000
--- a/runtime/bin/vmservice/client/lib/src/observatory_elements/heap_profile.html
+++ /dev/null
@@ -1,73 +0,0 @@
-<head>
- <link rel="import" href="class_ref.html">
- <link rel="import" href="nav_bar.html">
- <link rel="import" href="observatory_element.html">
-</head>
-<polymer-element name="heap-profile" extends="observatory-element">
-<template>
- <nav-bar>
- <top-nav-menu></top-nav-menu>
- <isolate-nav-menu app="{{ app }}" isolate="{{ app.locationManager.currentIsolate() }}">
- </isolate-nav-menu>
- <nav-menu link="." anchor="heap profile" last="{{ true }}"></nav-menu>
- <nav-refresh callback="{{ refresh }}"></nav-refresh>
- </nav-bar>
-
- <button type="button" on-click="{{resetAccumulator}}">Reset Accumulator</button>
- <div class="row">
- <div id="newPieChart" class="col-md-4" style="height: 400px">
- </div>
- <div id="newStatus" class="col-md-2">
- <table class="table">
- <tbody>
- <tr>
- <td>Collections</td>
- <td>{{ formattedCollections(true) }}</td>
- </tr>
- <tr>
- <td>Average Collection Time</td>
- <td>{{ formattedAverage(true) }}</td>
- </tr>
- <tr>
- <td>Cumulative Collection Time</td>
- <td>{{ formattedTotalCollectionTime(true) }}</td>
- </tr>
- </tbody>
- </table>
- </div>
- <div id="oldPieChart" class="col-md-4" style="height: 400px">
- </div>
- <div id="oldStatus" class="col-md-2">
- <table class="table">
- <tbody>
- <tr>
- <td>Collections</td>
- <td>{{ formattedCollections(false) }}</td>
- </tr>
- <tr>
- <td>Average Collection Time</td>
- <td>{{ formattedAverage(false) }}</td>
- </tr>
- <tr>
- <td>Cumulative Collection Time</td>
- <td>{{ formattedTotalCollectionTime(false) }}</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <div class="row">
- <p class="col-md-2">Aggregate heap table</p>
- </div>
- <div class="row">
- <div id="simpleTable" class="col-md-12" style="height: 800px"></div>
- </div>
- <div class="row">
- <p class="col-md-2">Individual heap table</p>
- </div>
- <div class="row">
- <div id="table" class="col-md-12" style="height: 800px"></div>
- </div>
-</template>
-<script type="application/dart" src="heap_profile.dart"></script>
-</polymer-element>

Powered by Google App Engine
This is Rietveld 408576698