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

Side by Side Diff: runtime/bin/vmservice/client/deployed/web/index_devtools.html

Issue 320233005: Regenerate Observatory JS (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 <!DOCTYPE html><html><head> 1 <!DOCTYPE html><html><head>
2 <title>Dart VM Observatory</title> 2 <title>Dart VM Observatory</title>
3 <meta charset="utf-8"> 3 <meta charset="utf-8">
4 4
5 5
6 6
7 7
8 8
9 9
10 </head> 10 </head>
(...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after
1141 <polymer-element name="nav-control" extends="observatory-element"> 1141 <polymer-element name="nav-control" extends="observatory-element">
1142 <template> 1142 <template>
1143 <style> 1143 <style>
1144 .black { 1144 .black {
1145 color: #000; 1145 color: #000;
1146 } 1146 }
1147 li { 1147 li {
1148 float: right; 1148 float: right;
1149 margin: 0; 1149 margin: 0;
1150 } 1150 }
1151 li button { 1151 button {
1152 margin: 3px; 1152 margin: 3px;
1153 padding: 8px; 1153 padding: 8px;
1154 } 1154 }
1155 </style> 1155 </style>
1156 <!-- Disable until issues with history in Dartium are fixed
1156 <li> 1157 <li>
1157 <button class="black" on-click="{{ back }}"></button> 1158 <button class="black" on-click="{{ back }}">&#9664;</button>
1158 <button class="black" on-click="{{ forward }}"></button> 1159 <button class="black" on-click="{{ forward }}">&#9654;</button>
1159 </li> 1160 </li>
1161 -->
1160 </template> 1162 </template>
1161 </polymer-element> 1163 </polymer-element>
1162 1164
1163 <polymer-element name="top-nav-menu"> 1165 <polymer-element name="top-nav-menu">
1164 <template> 1166 <template>
1165 <nav-menu link="/vm" anchor="Observatory" last="{{ last }}"> 1167 <nav-menu link="/vm" anchor="Observatory" last="{{ last }}">
1166 <content></content> 1168 <content></content>
1167 </nav-menu> 1169 </nav-menu>
1168 </template> 1170 </template>
1169 </polymer-element> 1171 </polymer-element>
(...skipping 10504 matching lines...) Expand 10 before | Expand all | Expand 10 after
11674 <div class="memberItem"> 11676 <div class="memberItem">
11675 <div class="memberValue"> 11677 <div class="memberValue">
11676 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLink( 'allocationprofile')) }}">allocation profile</a> 11678 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLink( 'allocationprofile')) }}">allocation profile</a>
11677 </div> 11679 </div>
11678 </div> 11680 </div>
11679 <div class="memberItem"> 11681 <div class="memberItem">
11680 <div class="memberValue"> 11682 <div class="memberValue">
11681 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLink( 'heapmap')) }}">heap map</a> 11683 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLink( 'heapmap')) }}">heap map</a>
11682 </div> 11684 </div>
11683 </div> 11685 </div>
11686 <!-- Disable io link until UI is properly implemented.
11684 <template if="{{ isolate.ioEnabled }}"> 11687 <template if="{{ isolate.ioEnabled }}">
11685 <div class="memberItem"> 11688 <div class="memberItem">
11686 <div class="memberValue"> 11689 <div class="memberValue">
11687 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLin k('io')) }}">dart:io</a> 11690 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLin k('io')) }}">dart:io</a>
11688 </div> 11691 </div>
11689 </div> 11692 </div>
11690 </template> 11693 </template>
11694 -->
11691 </div> 11695 </div>
11692 <div class="flex-item-10-percent"> 11696 <div class="flex-item-10-percent">
11693 </div> 11697 </div>
11694 </div> 11698 </div>
11695 </template> 11699 </template>
11696 </polymer-element> 11700 </polymer-element>
11697 11701
11698 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 11702 <polymer-element name="isolate-counter-chart" extends="observatory-element">
11699 <template> 11703 <template>
11700 <div id="counterPieChart" style="height: 200px"></div> 11704 <div id="counterPieChart" style="height: 200px"></div>
(...skipping 3643 matching lines...) Expand 10 before | Expand all | Expand 10 after
15344 </style> 15348 </style>
15345 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a> 15349 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a>
15346 </template> 15350 </template>
15347 15351
15348 </polymer-element> 15352 </polymer-element>
15349 15353
15350 15354
15351 <observatory-application devtools="true"></observatory-application> 15355 <observatory-application devtools="true"></observatory-application>
15352 15356
15353 <script src="index_devtools.html_bootstrap.dart.js"></script></body></html> 15357 <script src="index_devtools.html_bootstrap.dart.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698