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

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

Issue 2180553002: Converted Observatory source-link & script-ref elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Removed references from other elements Created 4 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
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="action_link.html"> 2 <link rel="import" href="action_link.html">
3 <link rel="import" href="function_ref.html"> 3 <link rel="import" href="function_ref.html">
4 <link rel="import" href="isolate_ref.html"> 4 <link rel="import" href="isolate_ref.html">
5 5
6 <link rel="import" href="script_inset.html"> 6 <link rel="import" href="script_inset.html">
Cutch 2016/07/25 14:08:21 ditto
cbernaschina 2016/07/25 15:57:13 Done.
7 <<<<<<< 3c295de444a82389503022ca4d8d7ed6065728f1
7 <link rel="import" href="script_ref.html"> 8 <link rel="import" href="script_ref.html">
8 <polymer-element name="isolate-summary"> 9 <polymer-element name="isolate-summary">
10 =======
11
12 <polymer-element name="isolate-summary" extends="observatory-element">
13 >>>>>>> Removed references from other elements
9 <template> 14 <template>
10 <link rel="stylesheet" href="css/shared.css"> 15 <link rel="stylesheet" href="css/shared.css">
11 <div class="flex-row"> 16 <div class="flex-row">
12 <div> 17 <div>
13 <isolate-ref ref="{{ isolate }}"></isolate-ref> 18 <isolate-ref ref="{{ isolate }}"></isolate-ref>
14 </div> 19 </div>
15 <div style="flex:1"></div> 20 <div style="flex:1"></div>
16 <div> 21 <div>
17 <isolate-run-state isolate="{{ isolate }}"></isolate-run-state> 22 <isolate-run-state isolate="{{ isolate }}"></isolate-run-state>
18 <isolate-location isolate="{{ isolate }}"></isolate-location> 23 <isolate-location isolate="{{ isolate }}"></isolate-location>
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 <div class="chart-wrapper" id="isolate-counter-chart"> 229 <div class="chart-wrapper" id="isolate-counter-chart">
225 <div class="chart-host-wrapper"> 230 <div class="chart-host-wrapper">
226 <div class="chart-host" id="isolate-counter-chart-host"></div> 231 <div class="chart-host" id="isolate-counter-chart-host"></div>
227 <div class="chart-legend-host" id="isolate-counter-chart-legend-host"></ div> 232 <div class="chart-legend-host" id="isolate-counter-chart-legend-host"></ div>
228 </div> 233 </div>
229 </div> 234 </div>
230 </template> 235 </template>
231 </polymer-element> 236 </polymer-element>
232 237
233 <script type="application/dart" src="isolate_summary.dart"></script> 238 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698