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

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

Issue 488233003: More service api cleanup. camelCasePropertyNames (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js, etc. Created 6 years, 3 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/observatory/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> 1 <!DOCTYPE html><html><head>
2 <meta charset="utf-8"> 2 <meta charset="utf-8">
3 <title>Dart VM Observatory</title> 3 <title>Dart VM Observatory</title>
4 4
5 5
6 6
7 7
8 8
9 9
10 10
(...skipping 2910 matching lines...) Expand 10 before | Expand all | Expand 10 after
2921 } 2921 }
2922 2922
2923 .break-wrap { 2923 .break-wrap {
2924 word-wrap: break-word; 2924 word-wrap: break-word;
2925 } 2925 }
2926 </style> 2926 </style>
2927 <span> 2927 <span>
2928 <template if="{{ ref['static'] }}">static</template> 2928 <template if="{{ ref['static'] }}">static</template>
2929 <template if="{{ ref['final'] }}">final</template> 2929 <template if="{{ ref['final'] }}">final</template>
2930 <template if="{{ ref['const'] }}">const</template> 2930 <template if="{{ ref['const'] }}">const</template>
2931 <template if="{{ (ref['declared_type']['name'] == 'dynamic' &amp;&amp; 2931 <template if="{{ (ref['declaredType'].name == 'dynamic' &amp;&amp;
2932 !ref['final'] &amp;&amp; !ref['const']) }}"> 2932 !ref['final'] &amp;&amp; !ref['const']) }}">
2933 var 2933 var
2934 </template> 2934 </template>
2935 <template if="{{ (ref['declared_type']['name'] != 'dynamic') }}"> 2935 <template if="{{ (ref['declaredType'].name != 'dynamic') }}">
2936 <instance-ref ref="{{ ref['declared_type'] }}"></instance-ref> 2936 <instance-ref ref="{{ ref['declaredType'] }}"></instance-ref>
2937 </template> 2937 </template>
2938 <a on-click="{{ goto }}" title="{{ hoverText }}" href="{{ url }}">{{ name }}</a> 2938 <a on-click="{{ goto }}" title="{{ hoverText }}" href="{{ url }}">{{ name }}</a>
2939 </span> 2939 </span>
2940 </template> 2940 </template>
2941 </polymer-element> 2941 </polymer-element>
2942 2942
2943 2943
2944 2944
2945 2945
2946 2946
(...skipping 2626 matching lines...) Expand 10 before | Expand all | Expand 10 after
5573 <nav-bar> 5573 <nav-bar>
5574 <top-nav-menu></top-nav-menu> 5574 <top-nav-menu></top-nav-menu>
5575 <isolate-nav-menu isolate="{{ field.isolate }}"></isolate-nav-menu> 5575 <isolate-nav-menu isolate="{{ field.isolate }}"></isolate-nav-menu>
5576 <template if="{{ field['owner'].serviceType == 'Class' }}"> 5576 <template if="{{ field['owner'].serviceType == 'Class' }}">
5577 <!-- TODO(turnidge): Add library nav menu here. --> 5577 <!-- TODO(turnidge): Add library nav menu here. -->
5578 <class-nav-menu cls="{{ field['owner'] }}"></class-nav-menu> 5578 <class-nav-menu cls="{{ field['owner'] }}"></class-nav-menu>
5579 </template> 5579 </template>
5580 <template if="{{ field['owner'].serviceType == 'Library' }}"> 5580 <template if="{{ field['owner'].serviceType == 'Library' }}">
5581 <library-nav-menu library="{{ field['owner'] }}"></library-nav-menu> 5581 <library-nav-menu library="{{ field['owner'] }}"></library-nav-menu>
5582 </template> 5582 </template>
5583 <nav-menu link="{{ field.link }}" anchor="{{ field['user_name'] }}" last=" {{ true }}"></nav-menu> 5583 <nav-menu link="{{ field.link }}" anchor="{{ field.name }}" last="{{ true }}"></nav-menu>
5584 <nav-refresh callback="{{ refresh }}"></nav-refresh> 5584 <nav-refresh callback="{{ refresh }}"></nav-refresh>
5585 <nav-control></nav-control> 5585 <nav-control></nav-control>
5586 </nav-bar> 5586 </nav-bar>
5587 5587
5588 <div class="content"> 5588 <div class="content">
5589 <h1> 5589 <h1>
5590 <template if="{{ field['static'] }}">static</template> 5590 <template if="{{ field['static'] }}">static</template>
5591 <template if="{{ field['final'] }}">final</template> 5591 <template if="{{ field['final'] }}">final</template>
5592 <template if="{{ field['const'] }}">const</template> 5592 <template if="{{ field['const'] }}">const</template>
5593 <template if="{{ (field['declared_type']['name'] == 'dynamic' &amp;&amp; 5593 <template if="{{ (field['declaredType'].name == 'dynamic' &amp;&amp;
5594 !field['final'] &amp;&amp; !field['const']) }}"> 5594 !field['final'] &amp;&amp; !field['const']) }}">
5595 var 5595 var
5596 </template> 5596 </template>
5597 <template if="{{ (field['declared_type']['user_name'] != 'dynamic') }}"> 5597 <template if="{{ (field['declaredType'].name != 'dynamic') }}">
5598 {{ field['declared_type']['user_name'] }} 5598 {{ field['declaredType'].name }}
5599 </template> 5599 </template>
5600 {{ field['user_name'] }} 5600 {{ field.name }}
5601 </h1> 5601 </h1>
5602 <div class="memberList"> 5602 <div class="memberList">
5603 <div class="memberItem"> 5603 <div class="memberItem">
5604 <div class="memberName">owner</div> 5604 <div class="memberName">owner</div>
5605 <div class="memberValue"> 5605 <div class="memberValue">
5606 <template if="{{ field['owner'].serviceType == 'Class' }}"> 5606 <template if="{{ field['owner'].serviceType == 'Class' }}">
5607 <class-ref ref="{{ field['owner'] }}"></class-ref> 5607 <class-ref ref="{{ field['owner'] }}"></class-ref>
5608 </template> 5608 </template>
5609 <template if="{{ field['owner'].serviceType != 'Class' }}"> 5609 <template if="{{ field['owner'].serviceType != 'Class' }}">
5610 <library-ref ref="{{ field['owner'] }}"></library-ref> 5610 <library-ref ref="{{ field['owner'] }}"></library-ref>
5611 </template> 5611 </template>
5612 </div> 5612 </div>
5613 </div> 5613 </div>
5614 <div class="memberItem"> 5614 <div class="memberItem">
5615 <div class="memberName">script</div> 5615 <div class="memberName">script</div>
5616 <div class="memberValue"> 5616 <div class="memberValue">
5617 <script-ref ref="{{ field['script'] }}"></script-ref> 5617 <script-ref ref="{{ field['script'] }}"></script-ref>
5618 </div> 5618 </div>
5619 </div> 5619 </div>
5620 <template if="{{ !field['static'] }}"> 5620 <template if="{{ !field['static'] }}">
5621 <div class="memberItem" title="The types observed for this field at ru ntime. Fields that are observed to have a single type at runtime or to never be null may allow for additional optimization."> 5621 <div class="memberItem" title="The types observed for this field at ru ntime. Fields that are observed to have a single type at runtime or to never be null may allow for additional optimization.">
5622 <div class="memberName">observed types</div> 5622 <div class="memberName">observed types</div>
5623 <div class="memberValue"> 5623 <div class="memberValue">
5624 <template if="{{ field['guard_class'] == 'dynamic' }}"> 5624 <template if="{{ field['guardClass'] == 'dynamic' }}">
5625 various 5625 various
5626 </template> 5626 </template>
5627 <template if="{{ field['guard_class'] == 'unknown' }}"> 5627 <template if="{{ field['guardClass'] == 'unknown' }}">
5628 none 5628 none
5629 </template> 5629 </template>
5630 <template if="{{ field['guard_class'] != 'unknown' &amp;&amp; 5630 <template if="{{ field['guardClass'] != 'unknown' &amp;&amp;
5631 field['guard_class'] != 'dynamic' }}"> 5631 field['guardClass'] != 'dynamic' }}">
5632 <class-ref ref="{{ field['guard_class'] }}"></class-ref> 5632 <class-ref ref="{{ field['guardClass'] }}"></class-ref>
5633 <template if="{{ field['guard_nullable'] }}"> 5633 <template if="{{ field['guardNullable'] }}">
5634 — null observed 5634 — null observed
5635 </template> 5635 </template>
5636 <template if="{{ !field['guard_nullable'] }}"> 5636 <template if="{{ !field['guardNullable'] }}">
5637 — null not observed 5637 — null not observed
5638 </template> 5638 </template>
5639 </template> 5639 </template>
5640 </div> 5640 </div>
5641 </div> 5641 </div>
5642 </template> 5642 </template>
5643 <template if="{{ field['value'] != null }}"> 5643 <template if="{{ field['value'] != null }}">
5644 <div class="memberItem"> 5644 <div class="memberItem">
5645 <div class="memberName">static value</div> 5645 <div class="memberName">static value</div>
5646 <div class="memberValue"> 5646 <div class="memberValue">
(...skipping 11 matching lines...) Expand all
5658 5658
5659 5659
5660 5660
5661 5661
5662 5662
5663 5663
5664 5664
5665 5665
5666 5666
5667 5667
5668
5668 <polymer-element name="stack-frame" extends="observatory-element"> 5669 <polymer-element name="stack-frame" extends="observatory-element">
5669 <template> 5670 <template>
5670 <style> 5671 <style>
5671 /* Global styles */ 5672 /* Global styles */
5672 * { 5673 * {
5673 margin: 0; 5674 margin: 0;
5674 padding: 0; 5675 padding: 0;
5675 font: 400 14px 'Montserrat', sans-serif; 5676 font: 400 14px 'Montserrat', sans-serif;
5676 color: #333; 5677 color: #333;
5677 box-sizing: border-box; 5678 box-sizing: border-box;
(...skipping 13605 matching lines...) Expand 10 before | Expand all | Expand 10 after
19283 </style> 19284 </style>
19284 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a> 19285 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a>
19285 </template> 19286 </template>
19286 </polymer-element> 19287 </polymer-element>
19287 19288
19288 19289
19289 19290
19290 <observatory-application></observatory-application> 19291 <observatory-application></observatory-application>
19291 19292
19292 <script src="index.html_bootstrap.dart.js" async=""></script></body></html> 19293 <script src="index.html_bootstrap.dart.js" async=""></script></body></html>
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice/observatory/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698