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

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

Issue 204983008: Rework how ServiceObjects are created and cached in Observatory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js / fix 1 bug 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
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html><html><head><script src="packages/shadow_dom/shadow_dom.debug.js" ></script> 1 <!DOCTYPE html><html><head><script src="packages/shadow_dom/shadow_dom.debug.js" ></script>
2 <script src="packages/custom_element/custom-elements.debug.js"></script> 2 <script src="packages/custom_element/custom-elements.debug.js"></script>
3 3
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss"> 5 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss">
6 6
7 <title>Dart VM Observatory</title> 7 <title>Dart VM Observatory</title>
8 <script type="text/javascript" src="https://www.google.com/jsapi"></script> 8 <script type="text/javascript" src="https://www.google.com/jsapi"></script>
9 <script src="packages/browser/interop.js"></script> 9 <script src="packages/browser/interop.js"></script>
10 10
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 <table> 417 <table>
418 <tbody><tr template="" repeat="{{ result in results }}"> 418 <tbody><tr template="" repeat="{{ result in results }}">
419 <td class="historyExpr"> 419 <td class="historyExpr">
420 <a class="expr" on-click="{{ selectExpr }}" expr="{{ result['expr'] }}">{{ result['expr'] }}</a> 420 <a class="expr" on-click="{{ selectExpr }}" expr="{{ result['expr'] }}">{{ result['expr'] }}</a>
421 </td> 421 </td>
422 <td class="historyValue"> 422 <td class="historyValue">
423 <template if="{{ result['value'] == null }}"> 423 <template if="{{ result['value'] == null }}">
424 <div style="color:#aaa;cursor:wait;">&lt;pending&gt;</div> 424 <div style="color:#aaa;cursor:wait;">&lt;pending&gt;</div>
425 </template> 425 </template>
426 <template if="{{ result['value'] != null }}"> 426 <template if="{{ result['value'] != null }}">
427 <instance-ref isolate="{{ isolate }}" ref="{{ result['value'] }}"> 427 <instance-ref ref="{{ result['value'] }}"></instance-ref>
428 </instance-ref>
429 </template> 428 </template>
430 </td> 429 </td>
431 </tr> 430 </tr>
432 </tbody></table> 431 </tbody></table>
433 </template> 432 </template>
434 </template> 433 </template>
435 </polymer-element> 434 </polymer-element>
436 435
437 436
438 <polymer-element name="field-ref" extends="service-ref"> 437 <polymer-element name="field-ref" extends="service-ref">
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 <div class="memberItem"> 521 <div class="memberItem">
523 <div class="memberName">script</div> 522 <div class="memberName">script</div>
524 <div class="memberValue"> 523 <div class="memberValue">
525 <script-ref ref="{{ cls['script'] }}" line="{{ cls['line'] }}"> 524 <script-ref ref="{{ cls['script'] }}" line="{{ cls['line'] }}">
526 </script-ref> 525 </script-ref>
527 </div> 526 </div>
528 </div> 527 </div>
529 528
530 <div class="memberItem">&nbsp;</div> 529 <div class="memberItem">&nbsp;</div>
531 530
532 <template if="{{ cls['super']['type'] != 'Null' }}"> 531 <template if="{{ cls['super'] != null }}">
533 <div class="memberItem"> 532 <div class="memberItem">
534 <div class="memberName">extends</div> 533 <div class="memberName">extends</div>
535 <div class="memberValue"> 534 <div class="memberValue">
536 <class-ref ref="{{ cls['super'] }}"></class-ref> 535 <class-ref ref="{{ cls['super'] }}"></class-ref>
537 </div> 536 </div>
538 </div> 537 </div>
539 </template> 538 </template>
540 <template if="{{ cls['subclasses'].length > 0 }}"> 539 <template if="{{ cls['subclasses'].length > 0 }}">
541 <div class="memberItem"> 540 <div class="memberItem">
542 <div class="memberName">extended by</div> 541 <div class="memberName">extended by</div>
(...skipping 1282 matching lines...) Expand 10 before | Expand all | Expand 10 after
1825 <div class="memberItem"> 1824 <div class="memberItem">
1826 <div class="memberName">uptime</div> 1825 <div class="memberName">uptime</div>
1827 <div class="memberValue">{{ vm.uptime | formatTime }}</div> 1826 <div class="memberValue">{{ vm.uptime | formatTime }}</div>
1828 </div> 1827 </div>
1829 </div> 1828 </div>
1830 </div> 1829 </div>
1831 1830
1832 <br> 1831 <br>
1833 1832
1834 <ul class="list-group"> 1833 <ul class="list-group">
1835 <template repeat="{{ isolate in vm.allIsolates }}"> 1834 <template repeat="{{ isolate in vm.isolates }}">
1836 <li class="list-group-item"> 1835 <li class="list-group-item">
1837 <isolate-summary isolate="{{ isolate }}"></isolate-summary> 1836 <isolate-summary isolate="{{ isolate }}"></isolate-summary>
1838 </li> 1837 </li>
1839 </template> 1838 </template>
1840 </ul> 1839 </ul>
1841 </template> 1840 </template>
1842 1841
1843 </polymer-element> 1842 </polymer-element>
1844 <polymer-element name="service-view" extends="observatory-element"> 1843 <polymer-element name="service-view" extends="observatory-element">
1845 <!-- This element explicitly manages the child elements to avoid setting 1844 <!-- This element explicitly manages the child elements to avoid setting
(...skipping 15 matching lines...) Expand all
1861 <template> 1860 <template>
1862 <a href="{{ url }}">{{ ref.name }}</a> 1861 <a href="{{ url }}">{{ ref.name }}</a>
1863 </template> 1862 </template>
1864 1863
1865 </polymer-element> 1864 </polymer-element>
1866 1865
1867 1866
1868 <observatory-application></observatory-application> 1867 <observatory-application></observatory-application>
1869 1868
1870 </body></html> 1869 </body></html>
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698