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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/field_ref.html

Issue 184233007: Refactor Observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
OLDNEW
1 <head> 1 <head>
2 <link rel="import" href="class_ref.html"> 2 <link rel="import" href="class_ref.html">
3 <link rel="import" href="isolate_element.html">
3 <link rel="import" href="observatory_element.html"> 4 <link rel="import" href="observatory_element.html">
4 <link rel="import" href="service_ref.html"> 5 <link rel="import" href="service_ref.html">
5 </head> 6 </head>
6 <polymer-element name="field-ref" extends="service-ref"> 7 <polymer-element name="field-ref" extends="service-ref">
7 <template> 8 <template>
8 <div> 9 <div>
9 <template if="{{ ref['final'] }}"> final </template> 10 <template if="{{ ref['final'] }}"> final </template>
10 <template if="{{ ref['const'] }}"> const </template> 11 <template if="{{ ref['const'] }}"> const </template>
11 <template if="{{ (ref['declared_type']['name'] == 'dynamic' && !ref['final'] & & !ref['const']) }}"> 12 <template if="{{ (ref['declared_type']['name'] == 'dynamic' && !ref['final'] & & !ref['const']) }}">
12 var 13 var
13 </template> 14 </template>
14 <template if="{{ (ref['declared_type']['name'] != 'dynamic') }}"> 15 <template if="{{ (ref['declared_type']['name'] != 'dynamic') }}">
15 <class-ref app="{{ app }}" ref="{{ ref['declared_type'] }}"></class-ref> 16 <class-ref app="{{ app }}" ref="{{ ref['declared_type'] }}"></class-ref>
16 </template> 17 </template>
17 <a title="{{ hoverText }}" href="{{ url }}">{{ name }}</a> 18 <a title="{{ hoverText }}" href="{{ url }}">{{ name }}</a>
18 </div> 19 </div>
19 </template> <script type="application/dart" src="field_ref.dart"></script> </pol ymer-element> 20 </template> <script type="application/dart" src="field_ref.dart"></script> </pol ymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698