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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <head> 1 <head>
2 <link rel="import" href="code_ref.html"> 2 <link rel="import" href="code_ref.html">
3 <link rel="import" href="nav_bar.html"> 3 <link rel="import" href="nav_bar.html">
4 <link rel="import" href="observatory_element.html"> 4 <link rel="import" href="observatory_element.html">
5 </head> 5 </head>
6 <polymer-element name="isolate-profile" extends="isolate-element"> 6 <polymer-element name="isolate-profile" extends="isolate-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="{{ isolate }}"></isolate-nav-menu>
11 <nav-menu link="." anchor="cpu profile" last="{{ true }}"></nav-menu> 11 <nav-menu link="." anchor="cpu 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 <div class="row">
15 <div> 15 <div class="col-md-12">
16 <span>Top</span> 16 <span>Top</span>
17 <select selectedIndex="{{methodCountSelected}}" value="{{methodCounts[meth odCountSelected]}}"> 17 <select selectedIndex="{{methodCountSelected}}" value="{{methodCounts[me thodCountSelected]}}">
18 <option template repeat="{{count in methodCounts}}">{{count}}</option> 18 <option template repeat="{{count in methodCounts}}">{{count}}</option>
19 </select> 19 </select>
20 <span>exclusive methods</span> 20 <span>exclusive methods</span>
21 </div>
22 </div>
23 <div class="row">
24 <div class="col-md-12">
25 <p>Refreshed at {{ refreshTime }} with {{ sampleCount }} samples.</p>
26 </div>
21 </div> 27 </div>
22 <table id="tableTree" class="table table-hover"> 28 <table id="tableTree" class="table table-hover">
23 <thead> 29 <thead>
24 <tr> 30 <tr>
25 <th>Method</th> 31 <th>Method</th>
26 <th>Exclusive</th> 32 <th>Exclusive</th>
27 <th>Caller</th> 33 <th>Caller</th>
28 <th>Inclusive</th> 34 <th>Inclusive</th>
29 </tr> 35 </tr>
30 </thead> 36 </thead>
31 <tbody> 37 <tbody>
32 <tr template repeat="{{row in tree.rows }}" style="{{}}"> 38 <tr template repeat="{{row in tree.rows }}" style="{{}}">
33 <td on-click="{{toggleExpanded}}" 39 <td on-click="{{toggleExpanded}}"
34 class="{{ coloring(row) }}" 40 class="{{ coloring(row) }}"
35 style="{{ padding(row) }}"> 41 style="{{ padding(row) }}">
36 <code-ref isolate="{{ isolate }}" ref="{{ row.code.codeRef }}"></cod e-ref> 42 <code-ref isolate="{{ isolate }}" ref="{{ row.code.codeRef }}"></cod e-ref>
37 </td> 43 </td>
38 <td class="{{ coloring(row) }}">{{row.columns[0]}}</td> 44 <td class="{{ coloring(row) }}">{{row.columns[0]}}</td>
39 <td class="{{ coloring(row) }}">{{row.columns[1]}}</td> 45 <td class="{{ coloring(row) }}">{{row.columns[1]}}</td>
40 <td class="{{ coloring(row) }}">{{row.columns[2]}}</td> 46 <td class="{{ coloring(row) }}">{{row.columns[2]}}</td>
41 </tr> 47 </tr>
42 </tbody> 48 </tbody>
43 </table> 49 </table>
44 </template> 50 </template>
45 <script type="application/dart" src="isolate_profile.dart"></script> 51 <script type="application/dart" src="isolate_profile.dart"></script>
46 </polymer-element> 52 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698