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

Unified Diff: runtime/bin/vmservice/client/lib/src/elements/isolate_profile.html

Issue 185563013: Small changes in profiler (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 side-by-side diff with in-line comments
Download patch
Index: runtime/bin/vmservice/client/lib/src/elements/isolate_profile.html
diff --git a/runtime/bin/vmservice/client/lib/src/elements/isolate_profile.html b/runtime/bin/vmservice/client/lib/src/elements/isolate_profile.html
index a007471c0f5edc4a2f3f64957087c56a8576b34c..7d2fe1a0002fd1eac38727e264be90310f80dea6 100644
--- a/runtime/bin/vmservice/client/lib/src/elements/isolate_profile.html
+++ b/runtime/bin/vmservice/client/lib/src/elements/isolate_profile.html
@@ -11,13 +11,19 @@
<nav-menu link="." anchor="cpu profile" last="{{ true }}"></nav-menu>
<nav-refresh callback="{{ refresh }}"></nav-refresh>
</nav-bar>
-
- <div>
- <span>Top</span>
- <select selectedIndex="{{methodCountSelected}}" value="{{methodCounts[methodCountSelected]}}">
- <option template repeat="{{count in methodCounts}}">{{count}}</option>
- </select>
- <span>exclusive methods</span>
+ <div class="row">
+ <div class="col-md-12">
+ <span>Top</span>
+ <select selectedIndex="{{methodCountSelected}}" value="{{methodCounts[methodCountSelected]}}">
+ <option template repeat="{{count in methodCounts}}">{{count}}</option>
+ </select>
+ <span>exclusive methods</span>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-md-12">
+ <p>Refreshed at {{ refreshTime }} with {{ sampleCount }} samples.</p>
+ </div>
</div>
<table id="tableTree" class="table table-hover">
<thead>

Powered by Google App Engine
This is Rietveld 408576698