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

Side by Side Diff: runtime/observatory/lib/src/elements/class_ref_as_value.html

Issue 2310003004: Removed polymer & mirror from Observatory (Closed)
Patch Set: Fixed crash in heap-map page Created 4 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
OLDNEW
(Empty)
1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="service_ref.html">
3
4 <polymer-element name="class-ref-as-value">
5 <template>
6 <link rel="stylesheet" href="css/shared.css">
7 <style>
8 .indented {
9 margin-left: 1.5em;
10 font: 400 14px 'Montserrat', sans-serif;
11 line-height: 150%;
12 }
13 </style><!--
14 --><class-ref ref="{{ ref }}"></class-ref><!--
15 --><curly-block callback="{{ expander() }}" expandKey="{{ expandKey }}">
16 <div class="indented">
17 <template repeat="{{ field in ref.fields }}">
18 <template if="{{ field.isStatic }}">
19 {{ field.name }}&nbsp;:&nbsp;
20 <any-service-ref ref="{{ field.staticValue }}"
21 expandKey="{{ makeExpandKey(field.name) }}">
22 </any-service-ref><br>
23 </template>
24 </template>
25 </div>
26 </curly-block><!--
27 --></template>
28 </polymer-element>
29
30 <script type="application/dart" src="class_ref_as_value.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698