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

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

Issue 392933003: vm/observatory: Clean up script access (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 10
(...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after
923 </template> 923 </template>
924 924
925 <template if="{{ (isType(ref.serviceType)) }}"> 925 <template if="{{ (isType(ref.serviceType)) }}">
926 <a on-click="{{ goto }}" href="{{ url }}">{{ ref['user_name'] }}</a> 926 <a on-click="{{ goto }}" href="{{ url }}">{{ ref['user_name'] }}</a>
927 </template> 927 </template>
928 928
929 <template if="{{ isInstance(ref.serviceType) &amp;&amp; 929 <template if="{{ isInstance(ref.serviceType) &amp;&amp;
930 ref['closureFunc'] != null}}"> 930 ref['closureFunc'] != null}}">
931 <a on-click="{{ goto }}" href="{{ url }}"> 931 <a on-click="{{ goto }}" href="{{ url }}">
932 <!-- TODO(turnidge): Switch this to fully-qualified function --> 932 <!-- TODO(turnidge): Switch this to fully-qualified function -->
933 {{ ref['closureFunc']['user_name'] }} 933 {{ ref['closureFunc'].name }}
934 </a> 934 </a>
935 </template> 935 </template>
936 936
937 <template if="{{ isInstance(ref.serviceType) &amp;&amp; 937 <template if="{{ isInstance(ref.serviceType) &amp;&amp;
938 ref['closureFunc'] == null}}"> 938 ref['closureFunc'] == null}}">
939 <a on-click="{{ goto }}" href="{{ url }}"><em>{{ ref['class'].name }}</e m></a> 939 <a on-click="{{ goto }}" href="{{ url }}"><em>{{ ref['class'].name }}</e m></a>
940 <curly-block callback="{{ expander() }}"> 940 <curly-block callback="{{ expander() }}">
941 <div class="memberList"> 941 <div class="memberList">
942 <template repeat="{{ field in ref['fields'] }}"> 942 <template repeat="{{ field in ref['fields'] }}">
943 <div class="memberItem"> 943 <div class="memberItem">
(...skipping 14683 matching lines...) Expand 10 before | Expand all | Expand 10 after
15627 } 15627 }
15628 15628
15629 .break-wrap { 15629 .break-wrap {
15630 word-wrap: break-word; 15630 word-wrap: break-word;
15631 } 15631 }
15632 </style> 15632 </style>
15633 <nav-bar> 15633 <nav-bar>
15634 <top-nav-menu></top-nav-menu> 15634 <top-nav-menu></top-nav-menu>
15635 <isolate-nav-menu isolate="{{ script.isolate }}"> 15635 <isolate-nav-menu isolate="{{ script.isolate }}">
15636 </isolate-nav-menu> 15636 </isolate-nav-menu>
15637 <nav-menu link="{{ script.owningLibrary.link }}" anchor="{{ script.owningLib rary.name }}"></nav-menu>
15637 <nav-menu link="{{ script.link }}" anchor="{{ script.name }}" last="{{ true }}"></nav-menu> 15638 <nav-menu link="{{ script.link }}" anchor="{{ script.name }}" last="{{ true }}"></nav-menu>
15638 <nav-refresh callback="{{ refreshCoverage }}" label="Refresh Coverage"></nav -refresh> 15639 <nav-refresh callback="{{ refreshCoverage }}" label="Refresh Coverage"></nav -refresh>
15639 <nav-refresh callback="{{ refresh }}"></nav-refresh> 15640 <nav-refresh callback="{{ refresh }}"></nav-refresh>
15640 <nav-control></nav-control> 15641 <nav-control></nav-control>
15641 </nav-bar> 15642 </nav-bar>
15642 15643
15643 <template if="{{ args['pos'] == null }}"> 15644 <template if="{{ args['pos'] == null }}">
15644 <script-inset id="scriptInset" script="{{ script }}"> 15645 <script-inset id="scriptInset" script="{{ script }}">
15645 <h1>script {{ script.name }}</h1> 15646 <h1>script {{ script.name }}</h1>
15646 </script-inset> 15647 </script-inset>
(...skipping 1995 matching lines...) Expand 10 before | Expand all | Expand 10 after
17642 </style> 17643 </style>
17643 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a> 17644 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a>
17644 </template> 17645 </template>
17645 </polymer-element> 17646 </polymer-element>
17646 17647
17647 17648
17648 17649
17649 <observatory-application devtools="true"></observatory-application> 17650 <observatory-application devtools="true"></observatory-application>
17650 17651
17651 <script src="index_devtools.html_bootstrap.dart.js" async=""></script></body></h tml> 17652 <script src="index_devtools.html_bootstrap.dart.js" async=""></script></body></h tml>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698