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

Side by Side Diff: dart/runtime/bin/vmservice/client/lib/src/observatory_elements/isolate_profile.html

Issue 119673004: Version 1.1.0-dev.5.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 11 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="observatory_element.html"> 2 <link rel="import" href="observatory_element.html">
3 </head> 3 </head>
4 <polymer-element name="isolate-profile" extends="observatory-element"> 4 <polymer-element name="isolate-profile" extends="observatory-element">
5 <template> 5 <template>
6 <p> P R O F I L E </p> 6 <p> P R O F I L E </p>
7 <div> 7 <div>
8 <button type="button" on-click="{{refreshData}}">Refresh profile data</but ton> 8 <button type="button" on-click="{{refreshData}}">Refresh profile data</but ton>
9 <span>Top</span> 9 <span>Top</span>
10 <select selectedIndex="{{methodCountSelected}}" value="{{methodCounts[meth odCountSelected]}}"> 10 <select selectedIndex="{{methodCountSelected}}" value="{{methodCounts[meth odCountSelected]}}">
(...skipping 29 matching lines...) Expand all
40 <tbody> 40 <tbody>
41 <tr template repeat="{{ code in topExclusiveCodes }}"> 41 <tr template repeat="{{ code in topExclusiveCodes }}">
42 <td>{{ codeTicks(code, false) }}</td> 42 <td>{{ codeTicks(code, false) }}</td>
43 <td>{{ codePercent(code, false) }}</td> 43 <td>{{ codePercent(code, false) }}</td>
44 <td>{{ codeName(code) }}</td> 44 <td>{{ codeName(code) }}</td>
45 </tr> 45 </tr>
46 </table> 46 </table>
47 </template> 47 </template>
48 <script type="application/dart" src="isolate_profile.dart"></script> 48 <script type="application/dart" src="isolate_profile.dart"></script>
49 </polymer-element> 49 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698